I am getting undefined variable error in Laravel for the code section: (this is index.blade.php file)
 @foreach($faqs as $faq) 
  <tr>
  <td>{{$loop->iteration}}</td>
  <td>{{$faq->question}}</td>
  <td>{{$faq->descripton}}</td>
  </tr>
though I send the variable in this file via Controller:
public function index(Request $request)
{
    $faqs = Faq::all();
    return view('admin.faq.index')->with('faqs', $faqs);
}
The Faq Model is :
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Faq extends Model
{
    //
}
the error message I am getting is

How can I solve this? TIA.
 
     
     
    