예제 #1
0
 /**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     if (Gate::denies('admin')) {
         abort(403);
     }
     Artist::destroy($id);
     return redirect()->route('artist.index')->with('alert-success', [trans('htmusic.deleted')]);
 }