Example #1
0
 /**
  * Show Artist Profile
  * 
  * @return Response
  */
 public function artistShow($permalink)
 {
     $artist = Artist::ArtistDetails($permalink)->first();
     return view('public.artists.show', compact('artist'));
 }