Ejemplo n.º 1
0
 /**
  * Remove the specified gracetime from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     GraceTime::destroy($id);
     return Redirect::route('grace_times.index');
 }