예제 #1
0
 /**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     $dayoff = Timeoff::findOrFail($id);
     $dayoff->status = "Declined";
     $dayoff->save();
     return redirect('dayOff');
 }