Routing
Controller File Modified
class IndecController extends Controller
{
//
public function index(){
return inertia('Index');
}
public function about()
{
return inertia('About');
}
}Web.php
Last updated