Mise à jour

This commit is contained in:
Ludovic CANDELLIER
2021-03-21 23:26:53 +01:00
parent c025dbb385
commit 083d358fbd
78 changed files with 1003 additions and 716 deletions

View File

@@ -0,0 +1,20 @@
<?php
namespace App\Exports\Botanic;
use Illuminate\Contracts\View\View;
use Maatwebsite\Excel\Concerns\FromQuery;
use Maatwebsite\Excel\Concerns\Exportable;
use App\Models\Botanic\Specie;
class SpeciesExport implements FromQuery
{
use Exportable;
public function query()
{
return Specie::query();
}
}