| Current Path : /var/www/html/LLCF-APP/app/Exports/ |
| Current File : /var/www/html/LLCF-APP/app/Exports/StudentsExport.php |
<?php
namespace App\Exports;
use Illuminate\Contracts\View\View;
use Maatwebsite\Excel\Concerns\FromView;
class StudentsExport implements FromView
{
protected $students;
public function __construct($students)
{
$this->students = $students;
}
public function view(): View
{
return view('admin.students.export.excel', [
'students' => $this->students
]);
}
}