Request URL: https://api.site.ru/goals/event.json
// Роут
Route::get('countries', [CountryController::class, 'index']);
// Контроллер
public function index()
{
// Обычный запрос
$countries = Country::all(['id', 'name']);
// Экономим 1мс. А может и теряем.
$countries = Cache::remember('countries', 100500, function () {
return Country::all(['id', 'name']);
});
}