⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.1
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
work
/
modules
/
User
/
Exports
/
Edit File: UserExport.php
<?php namespace Modules\User\Exports; use Maatwebsite\Excel\Concerns\FromCollection; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Concerns\WithMapping; use App\User; use Maatwebsite\Excel\Concerns\WithHeadings; class UserExport implements FromCollection, WithHeadings, WithMapping { use Exportable; public function collection() { return User::select([ 'business_name', 'first_name', 'last_name', 'email', 'phone', 'address', 'address2', 'city', 'state', 'country', 'zip_code', 'status', ])->get(); } public function map($user): array { return [ ltrim($user->business_name,"=-"), ltrim($user->first_name,"=-"), ltrim($user->last_name,"=-"), ltrim($user->email,"=-"), ltrim($user->phone,"=-"), ltrim($user->address,"=-"), ltrim($user->address2,"=-"), ltrim($user->city,"=-"), ltrim($user->state,"=-"), ltrim($user->country,"=-"), ltrim($user->zip_code,"=-"), ltrim($user->status,"=-"), //ltrim($user->role_name,"=-"), ]; } public function headings(): array { return [ __('Business Name'), __('First name'), __('Last name'), __('Email'), __('Phone'), __('Address'), __('Address 2'), __('City'), __('State'), __('Country'), __('Zip Code'), __('Status'), //__('Role'), ]; } }
Simpan