P粉6048485882023-08-14 12:51:02
嘗試這個
session()->flash('msg', ['text' => $msg, 'color' => $color]);
在blade模板中
<div class="col-sm-12 col-xl-12"> @if (session()->has('msg')) <h5 style="color: {{ session('msg.color') }}">{{session('msg.text') }}</h5> @endif </div>
在這段程式碼中,我確保包含了正確的導入,使用了正確的方法進行資料插入,並使用了flash()方法而不是put()方法將訊息暫時儲存在會話中。此外,訊息的顏色也儲存在會話中,以便更好地控制樣式。
另外,你可以嘗試使用WITH
方法來綁定它。
return back()->with('msg', 'Your message');
你可以使用redirect()
redirect()->route()
等方法。
此外,請仔細閱讀文件,你將從中獲得很多想法。