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