chess/app/Exports/LaporanProjectExports.php
Ramadhon Ikhsan Prasetya 603e31b0f4 init
2024-08-29 10:56:32 +07:00

14 lines
259 B
PHP

<?php
namespace App\Exports;
use Illuminate\Contracts\View\View;
use Maatwebsite\Excel\Concerns\FromView;
class LaporanProjectExport implements FromView
{
public function view(): View
{
return view('content.others.laporan_project');
}
}