MIF_E31210521/app/Exports/SubdistrictExport.php

18 lines
301 B
PHP

<?php
namespace App\Exports;
use App\Models\Subdistrict;
use Maatwebsite\Excel\Concerns\FromCollection;
class SubdistrictExport implements FromCollection
{
/**
* @return \Illuminate\Support\Collection
*/
public function collection()
{
return Subdistrict::all();
}
}