我的應用程序是一個簡單的CRUD應用程序。我有一個刪除控制器操作,當該項目被成功刪除時,它將重定向回列表。我現在試圖添加的是向用戶發送的消息,即數據已成功刪除。Laravel重定向數據不起作用
我的控制器操作:
public function deleteItem($id)
{
try {
$item = Item::findOrFail($id);
$item->delete();
return Redirect::to('list')->with('message', 'Successfully deleted');
} catch (ModelNotFoundException $e) {
return View::make('errors.missing');
}
}
我list.blade.php視圖的一部分,我嘗試顯示消息:
@if (isset($message))
<div class="alert alert-success alert-dismissable">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
{{ $message }}
</div>
@endif
的問題,我有是,$message
變量總是空的。