예제 #1
0
 public function removeRoom($room)
 {
     $conference = Conference::orderBy('id', 'desc')->first()->id;
     DB::table('timeslots')->where('room_code', $room)->where('conference_id', $conference)->delete();
     return redirect()->route('room.index');
 }