MIF_E31212365/app/Http/Controllers/HomeController.php

15 lines
222 B
PHP

<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Inertia\Inertia;
class HomeController extends Controller
{
public function index()
{
return Inertia::render('Landing', []);
}
}