Exemplo n.º 1
0
 /**
  * Remove the specified resource from storage.
  *
  * @param Entry $model
  * @return Response
  * @throws \Exception
  */
 public function destroy(Entry $model)
 {
     if (!$model->delete()) {
         abort(403);
     }
 }