bladeのsessionってなんだこれ?
を読んでください。
php側
Route::post('user/profile', function () {
// ユーザープロフィールの更新処理…
return redirect('dashboard')->with('status', 'Profile updated!');
});
blade.php
@if (session('status'))
<div class="alert alert-success">
{{ session('status') }}
</div>
@endif
ザックリ言うと、redirect()->with()
のメソッドの中でsessionに一時的に保存しているようです。
詳しくは後ほど調べます。