17 lines
207 B
PHP
17 lines
207 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App;
|
|
use Inertia\Inertia;
|
|
|
|
class FrontHomeController extends Controller
|
|
{
|
|
public function index()
|
|
{
|
|
|
|
|
|
return Inertia::render('home/home');
|
|
}
|
|
}
|