次のコード未定義変数template_2のlaravel 5.2
$result = User::where("device_token", "!=", "")->where("device_type", "!=", "")->get();
$template_2 = DB::table('notification_templates')->get();
return view('admin.push_notifications')
->withPage('push_notifications')
->with([
'result' => $result,
'template_2' => $template_2,
]);
ビューの取得時にエラーが発生しまし..あなたのコードが動作しなければならない、あなたの質問によると、そうでない場合は作品
@if(($template_2))
@foreach($template_2 as $taken)
{{ $taken->title }
@endforeach
@endif
PHPのv5.5.9
どのようなエラーが表示されますか? –
未定義の変数template_2 –
@MuhammadMuazzam私の答えを参照 – kunal