/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $artists = Artist::get(['id', 'name', 'permalink', 'email', 'active']);
     return view('admin.artists.index', compact('artists'));
 }