这是我在控制器中的功能
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')
当我在PostMan中访问http://127.0.0.1:8000/api/customers/list时,出现错误404未找到 另一条路线效果很好。 有人可以帮我吗?
答案 0 :(得分:1)
检查php artisan route:list
/仔细检查您的路线信息。
此外,请检查您的控制器类名称和名称空间。