Exemplo n.º 1
0
 /**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $faqs = $this->faq->all();
     return view('faq::admin.faqs.index', compact('faqs'));
 }
Exemplo n.º 2
0
 /**
  * Display the questions & answers
  * @return $this
  */
 public function index()
 {
     $faqs = $this->faq->all();
     return view('faq::public.faq')->with(compact('faqs'));
 }