16 lines
298 B
PHP
16 lines
298 B
PHP
<?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');
|
|
}
|
|
}
|