14 lines
259 B
PHP
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');
|
||
|
}
|
||
|
}
|