staffmanager/app/Appointment.php
Miguel Nogueira cc8c293cc6 Significant changes
Added several components and features too long to list here
2020-05-22 03:49:16 +01:00

29 lines
522 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Appointment extends Model
{
public $fillable = [
'appointmentDescription',
'appointmentDate',
'applicationID',
'appointmentStatus',
'appointmentLocation'
];
public function application()
{
return $this->belongsTo('App\Application', 'id', 'applicationID');
}
public function setStatus($status)
{
$this->update([
'appointmentStatus' => $status
]);
}
}