21 lines
391 B
PHP
21 lines
391 B
PHP
<?php
|
|
namespace App\Exports;
|
|
|
|
use Illuminate\Contracts\View\View;
|
|
use Maatwebsite\Excel\Concerns\FromView;
|
|
|
|
class RelatorioCrmExport implements FromView
|
|
{
|
|
protected $data;
|
|
public function __construct($data)
|
|
{
|
|
$this->data = $data;
|
|
}
|
|
public function view(): View
|
|
{
|
|
return view('exports.relatorio_crm', [
|
|
'data' => $this->data
|
|
]);
|
|
}
|
|
}
|