LAR_Maintenance/app/Http/Controllers/DashboardController.php
JonatanRek 790f595f0f Fix
2024-08-07 21:50:09 +02:00

12 lines
162 B
PHP

<?php
namespace App\Http\Controllers;
class DashboardController extends BaseController
{
public function index()
{
return view('home');
}
}