20 lines
335 B
PHP
20 lines
335 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\Variety;
|
|
|
|
class VarietiesExport implements FromQuery
|
|
{
|
|
use Exportable;
|
|
|
|
public function query()
|
|
{
|
|
return Variety::query();
|
|
}
|
|
}
|