2017-11-23 18 views
0

次のコード未定義変数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

+0

どのようなエラーが表示されますか? –

+0

未定義の変数template_2 –

+0

@MuhammadMuazzam私の答えを参照 – kunal

答えて

0

をこのコードを試すことができます: -

$result = User::where("device_token", "!=", "")->where("device_type", "!=", "")->get(); 
$template = DB::table('notification_templates')->get(); 
return view('admin.push_notifications')->with(compact('result','template')); 

ビュー: -

@if(isset($template)) 
    @foreach($template as $taken) 

{{ $taken->title } 

    @endforeach 
@endif 

希望すると助かります!

+0

それでも動作しません –

+0

何がエラーですか? @MuhammadMuazzam – kunal

+0

未定義の変数template_2 –

関連する問題