appointmentDateTime); $appointment = Appointment::create([ 'appointmentDescription' => $request->appointmentDescription, 'appointmentDate' => $appointmentDate->toDateTimeString(), 'applicationID' => $applicationID, 'appointmentLocation' => (in_array($request->appointmentLocation, $this->allowedPlatforms)) ? $request->appointmentLocation : 'DISCORD', ]); $app->setStatus('STAGE_INTERVIEW_SCHEDULED'); Log::info('User ' . Auth::user()->name . ' has scheduled an appointment with ' . $app->user->name . ' for application ID' . $app->id, [ 'datetime' => $appointmentDate->toDateTimeString(), 'scheduled' => now() ]); $app->user->notify(new AppointmentScheduled($appointment)); $request->session()->flash('success', 'Appointment successfully scheduled @ ' . $appointmentDate->toDateTimeString()); } else { $request->session()->flash('error', 'Cant\'t schedule an appointment for an application that doesn\'t exist.'); } return redirect()->back(); } public function updateAppointment(Request $request, $applicationID, $status) { $application = Application::find($applicationID); $validStatuses = [ 'SCHEDULED', 'CONCLUDED' ]; if (!is_null($application)) { // NOTE: This is a little confusing, refactor $application->appointment->appointmentStatus = (in_array($status, $validStatuses)) ? strtoupper($status) : 'SCHEDULED'; $application->appointment->save(); $application->setStatus('STAGE_PEERAPPROVAL'); $application->user->notify(new ApplicationMoved()); $request->session()->flash('success', 'Interview finished! Staff members can now vote on it.'); } else { $request->session()->flash('error', 'The application you\'re trying to update doesn\'t exist or have an appointment.'); } return redirect()->back(); } // also updates public function saveNotes(SaveNotesRequest $request, $applicationID) { $application = Application::find($applicationID); if (!is_null($application)) { $application->appointment->meetingNotes = $request->noteText; $application->appointment->save(); $request->session()->flash('success', 'Meeting notes have been saved.'); } else { $request->session()->flash('error', 'Sanity check failed: There\'s no appointment to save notes to!'); } return redirect()->back(); } }