Вот моя функция в контроллере
public function list()
{
$customers = Customer::all();
foreach ($customers as $customer) {
$list = [
'Customer ID' => $customer->id,
'Customer Name' => $customer->full_name,
];
$lists[] = $list;
}
$collection = $this->paginate($lists, $perPage = 5, $page = null, $options = []);
return new mainCollection($collection);
}
, а вот мой маршрут
Route::get('customers/list', 'customerController@list')
Когда я получаю доступ к http://127.0.0.1:8000/api/customers/list в PostMan, у меня ошибка 404 Not FoundДругой маршрут работает хорошо.кто-нибудь может мне помочь?