Пример #1
0
 /**
  * Remove the specified resource from storage.
  *
  * @param  int      $id
  * @return Response
  */
 public function destroy($id)
 {
     if ($this->tag->delete($id)) {
         return redirect('tag')->with('success', 'Tag successfully deleted!');
     }
     return redirect('tag')->with('error', 'Error deleting Tag !');
 }