Files
Galeria/app/Http/Controllers/GalleryController.php

18 lines
288 B
PHP

<?php
namespace App\Http\Controllers;
use App\Models\Song;
use Illuminate\Http\Request;
use Inertia\Inertia;
class GalleryController extends Controller
{
public function index()
{
return Inertia::render('Gallery', [
'songs' => Song::all(),
]);
}
}