芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/panorama.panoramawholesale.com/app/Exports/AttributeGroupListExport.php
<?php /** * @author TechVillage <support@techvill.org> * * @contributor Sakawat Hossain Rony <[sakawat.techvill@gmail.com]> * * @created 07-09-2021 */ namespace App\Exports; use App\Models\AttributeGroup; use Maatwebsite\Excel\Concerns\{ FromCollection, WithHeadings, WithMapping }; class AttributeGroupListExport implements FromCollection, WithHeadings, WithMapping { /** * [Here we need to fetch data from data source] * * @return [Database Object] [Here we are fetching data from User table and also role table through Eloquent Relationship] */ public function collection() { return AttributeGroup::getAll(); } /** * [Here we are putting Headings of The CSV] * * @return [array] [Excel Headings] */ public function headings(): array { return [ 'Name', 'Vendor', 'Summary', 'Status', 'Created At', ]; } /** * [By adding WithMapping you map the data that needs to be added as row. This way you have control over the actual source for each column. In case of using the Eloquent query builder] * * @param [object] $userList [It has users table info and roles table info] * @return [array] [comma separated value will be produced] */ public function map($groupList): array { return [ $groupList->name, optional($groupList->vendor)->name, $groupList->summary, $groupList->status, formatDate($groupList->created_at) . ' ' . timeZoneGetTime($groupList->created_at), ]; } }
Page is not found
Oops! Page not found.
Sorry, an error has occured, Requested page not found!
Back To Homepage