-1
我正在嘗試檢索變量以便用消息這種方式顯示。但是,我知道這實際上不是一種方法。 $count
是與消息一起顯示的變量。用消息檢索變量
public function now(Request $request)
{
$name=$request->get('name');
$contact=$request->get('contact');
$level=$request->get('level');
$count=$level*3.5;
return redirect('/lost')
->with ('message','You have increased your level to $count.');
}
只是改變'與(「消息」,「您已提高水平$計數。」);'到' ('message','您已將您的等級提高到$ count'。');'(雙引號而非單引號) – Thamilan
您正在使用哪種框架?在大多數框架中都有內置的Flash消息會話變量。 –
@ Thamilan。哦謝謝。我不認爲這很容易。 – Steve