我正在使用localhost / offers / create进行链接,但是它似乎没有找到正确的模板,而是当我得到edit.blade.php时,我会被发送到single.blade.php
http://codepad.org/vpYj1bub是我的代码的链接。
Route::get('offers/{id}', function($id) {
$offer = Offer::find($id);
return View::make('offers.single')
->with('offer', $offer);
});
上述路线似乎正在被击中。
答案 0 :(得分:1)
我的问题围绕缺失
Route::pattern('id', '[0-9]+');
这让我的创作不会出现在id
下面