15 lines
236 B
PHP
15 lines
236 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Home;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use Inertia\Inertia;
|
|
|
|
class HomepageController extends Controller
|
|
{
|
|
public function index()
|
|
{
|
|
return Inertia::render('HomePage');
|
|
}
|
|
}
|