Ejemplo n.º 1
0
 /**
  * Delete the specified ink
  *
  * @param Ink $ink
  * @return \Illuminate\Http\RedirectResponse|\Illuminate\Routing\Redirector
  */
 public function destroy(Ink $ink)
 {
     $this->authorize('delete_ink');
     $ink->delete();
     flash()->success('Ink Deleted', 'The ink has been removed');
     return redirect('ink');
 }