Beispiel #1
0
 /**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy(DeleteRequest $request, $id)
 {
     dd("destroy");
     $this->role->destroy($id);
     return redirect('role')->with('ok', trans('back/roles.destroyed'));
 }