-
Caio Gralho authored29f09000
<?php
namespace App\Exports;
use Illuminate\Contracts\View\View;
use Maatwebsite\Excel\Concerns\FromView;
use Maatwebsite\Excel\Concerns\WithTitle;
class PainelExportLegendSheet implements FromView, WithTitle
{
public function __construct(){}
public function view(): View
{
return view('exports.painel-legenda');
}
/**
* @return string
*/
public function title(): string
{
return 'Legenda';
}
}