/
var
/
www
/
html
/
gnet_live
/
app
/
Exports
/
Upload File
HOME
<?php namespace App\Exports; use App\Models\ContactUs; use Maatwebsite\Excel\Concerns\FromCollection; use Maatwebsite\Excel\Concerns\WithHeadings; class ContactsExport implements FromCollection, WithHeadings { /** * @return \Illuminate\Support\Collection */ public function collection() { return ContactUs::select('id', 'name', 'no_hp', 'email', 'province', 'city', 'category', 'message', 'created_at')->get(); } public function headings(): array { return ['No', 'Nama', 'No HP', 'Email', 'Provinsi', 'Kota/Kabupaten', 'Kategori Pertanyaan', 'Pesan', 'Waktu']; } }