LAR_Maintenance/app/Http/Controllers/DashboardController.php

12 lines
162 B
PHP
Raw Normal View History

2024-07-30 16:13:21 +00:00
<?php
namespace App\Http\Controllers;
2024-08-07 19:50:09 +00:00
class DashboardController extends BaseController
2024-07-30 16:13:21 +00:00
{
public function index()
{
return view('home');
}
}