From e9dd1567b810b323cc5cb8253b610c92a4e4b0d3 Mon Sep 17 00:00:00 2001 From: Miguel Nogueira Date: Thu, 3 Sep 2020 00:23:09 +0100 Subject: [PATCH] Appointment model tweaks --- app/Appointment.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/app/Appointment.php b/app/Appointment.php index 933bce2..d62e39a 100644 --- a/app/Appointment.php +++ b/app/Appointment.php @@ -7,11 +7,13 @@ use Illuminate\Database\Eloquent\Model; class Appointment extends Model { public $fillable = [ - 'appointmentDescription', - 'appointmentDate', - 'applicationID', + 'appointmentDescription', + 'appointmentDate', + 'applicationID', 'appointmentStatus', - 'appointmentLocation' + 'appointmentLocation', + 'meetingNotes', + 'userAccepted' ]; public function application()