This commit is contained in:
2023-08-03 12:26:42 +02:00
parent 9d7da548e3
commit a7e93681f3
4 changed files with 59 additions and 5 deletions

View File

@@ -0,0 +1,15 @@
<?php
declare(strict_types=1);
namespace App\Http\Controllers\Dashboard;
use App\Http\Controllers\Controller;
use Inertia\Response as InertiaResponse;
class MessageController extends Controller
{
public function index() : InertiaResponse {
return inertia('Messages/Index');
}
}