24 lines
460 B
PHP
24 lines
460 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
namespace App\Http\Controllers\Backend;
|
||
|
|
|
||
|
|
use App\Http\Controllers\Controller;
|
||
|
|
use App\Models\AuditTrail;
|
||
|
|
use App\Models\FormUpCountry;
|
||
|
|
use App\Models\FormEntertaimentPresentation;
|
||
|
|
use App\Models\FormMeetingSeminar;
|
||
|
|
use App\Models\FormVehicleRunningCost;
|
||
|
|
use App\Models\FormOthers;
|
||
|
|
|
||
|
|
class ReportController extends Controller
|
||
|
|
{
|
||
|
|
public function index()
|
||
|
|
{
|
||
|
|
return view('backend.pages.report.index', [
|
||
|
|
|
||
|
|
]);
|
||
|
|
}
|
||
|
|
}
|