Files
dashboard/app/Http/Controllers/IndexController.php
NaggaDIM 277a5d5a31 temp
2025-01-02 00:05:09 +03:00

16 lines
312 B
PHP

<?php
namespace App\Http\Controllers;
use Illuminate\Support\Facades\Route;
class IndexController extends Controller
{
public function __invoke()
{
return inertia('Welcome')
->with('canLogin', Route::has('login'))
->with('canRegister', Route::has('register'));
}
}