Files
opensem/app/Exports/Botanic/Families.php
Ludovic CANDELLIER 12aff23e00 Pass new parameters
2020-08-20 01:12:07 +02:00

20 lines
329 B
PHP

<?php
namespace App\Exports\Botanic;
use Illuminate\Contracts\View\View;
use Maatwebsite\Excel\Concerns\FromQuery;
use Maatwebsite\Excel\Concerns\Exportable;
use App\Models\Botanic\Family;
class FamiliesExport implements FromQuery
{
use Exportable;
public function query()
{
return Family::query();
}
}