Example #1
0
 /**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $testimonials = $this->testimonial->all();
     return view('testimonial::admin.testimonials.index', compact('testimonials'));
 }
 public function compose(View $view)
 {
     $view->with('testimonials', $this->testimonial->all());
 }