<?php
namespace App\Http\Controllers;
use App\Http\Controllers\Controller;
use App\Models\Review;
use App\Models\Testimony;
use Illuminate\Http\Request;
class TestimonyController extends Controller
{
public function list()
{
$testimony = Review::latest()->limit(3)->get();
return response()->json(['status' => 'success', 'message' => 'Fetch successfully', 'data' => $testimony]);
}
}