Example #1
0
 /**
  * Display label artists
  * 
  * @param  Request $request
  * @return Response
  */
 public function artists(Request $request)
 {
     $page = 'artists';
     $path = $request->segments();
     $artists = Artist::publicArtists()->get();
     return view('public.artists.index', compact('page', 'path', 'artists'));
 }