15 lines
221 B
PHP
15 lines
221 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Illuminate\Http\Request;
|
|
use Inertia\Inertia;
|
|
|
|
class GalleryController extends Controller
|
|
{
|
|
public function index()
|
|
{
|
|
return Inertia::render('Gallery');
|
|
}
|
|
}
|