7 lines
181 B
PHP
7 lines
181 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
Route::inertia('/', 'dashboard::index')->name('dashboard.index');
|
|
Route::inertia('/history', 'history::index')->name('history.index');
|