0
這是我的路線:沒有定義路由
$app->group(['prefix' => 'book/'], function ($app) {
$app->get('/','[email protected]'); //get all the routes
$app->post('/','[email protected]'); //store single route
$app->get('/{id}/', '[email protected]'); //get single route
$app->put('/{id}/','[email protected]'); //update single route
$app->delete('/{id}/','[email protected]'); //delete single route
});
當我嘗試生成一個URL,這個Route沒有定義[圖書]系統返回。
@foreach ($books as $book)
<li>
<a href="{{ route('book', ['id' => $book->id]) }}">
{{ $book->name}}
</a>
</li>
@endforeach
我錯過了什麼?
我可能是由於雙斜槓書/ +'/',因此您的路線似乎不正確的一般病後我將如何寫路線給我一個分鐘 – utdev
@utdev我嘗試刪除第二個'/',但沒有任何反應。等待你的解決方案。 – marcelo2605