-1
我在Laravel使用閃光燈的工作,顯示小的通知這裏是我的功能看起來像:我的會話即顯信息不會在Laravel
public function movetotrash($id){
$page = Pages::where('id', $id) -> first();
$page -> active = 0;
//$page -> save();
\Session::flash('flash_message', 'Post has been successfully moved to trash');
return redirect('pages');
}
這是我的看法是如何的樣子:
<div class="col-md-12">
@if(Session::has('flash_message'))
<div class="alert alert-success">
{{Session::get('flash_message')}}
</div>
@endif
</div>
這裏是我的路線看起來像:
Route::get('/', function() {
return view('welcome');
});
Route::get('dashboard', function() {
return view('dashboard.dashboard');
});
Route::get('pages/trash', '[email protected]');
Route::get('pages/movetotrash/{id}', '[email protected]');
Route::resource('pages', 'PagesController');
我是否需要調用一些庫在我的控制器Session
工作?
謝謝! (提前)
Ohk!讓我試試這個。 – user3201500
明白了!它的解決,像魅力工作... – user3201500