TKK_E32222865/app/Http/Controllers/imgaShowController.php

23 lines
396 B
PHP

<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\Models\foto;
class imgaShowController extends Controller
{
public function index()
{
return view('foto.index');
}
// Untuk API JSON (dipanggil oleh JavaScript/Axios)
public function getAll()
{
$fotos = foto::latest()->get();
return response()->json($fotos);
}
}