This commit is contained in:
NaggaDIM
2025-01-02 00:05:09 +03:00
parent 2d071320a3
commit 277a5d5a31
16 changed files with 297 additions and 397 deletions

View File

@@ -0,0 +1,15 @@
<?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'));
}
}