Пример #1
0
 /**
  * Display a listing of the resource.
  *
  * @return \Illuminate\View\View
  */
 public function index()
 {
     $works = $this->works->with('tags')->all();
     $tags = $this->tags->all();
     return view('frontend.pages.works.index', compact('works', 'tags'));
 }