reports not using the new export structure

This commit is contained in:
Denis Duliçi
2021-06-11 17:53:42 +03:00
parent 369ec5a2be
commit 562b1437f7
2 changed files with 7 additions and 3 deletions

View File

@ -3,12 +3,15 @@
namespace App\Exports\Common;
use Illuminate\Contracts\View\View;
use Maatwebsite\Excel\Concerns\Exportable;
use Maatwebsite\Excel\Concerns\FromView;
use Maatwebsite\Excel\Concerns\ShouldAutoSize;
use Maatwebsite\Excel\Concerns\WithTitle;
class Reports implements FromView, ShouldAutoSize, WithTitle
{
use Exportable;
protected $view;
protected $class;