e13df69885
API CI/CD / Validate (composer + pint) (push) Successful in 3m6s
API CI/CD / Test (PHPUnit) (push) Failing after 4m53s
API CI/CD / Build frontend assets (push) Successful in 1m2s
API CI/CD / Security audit (push) Failing after 59s
API CI/CD / Deploy to shared hosting (PHP) (push) Has been skipped
43 lines
1.2 KiB
PHP
43 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class Incident extends BaseModel
|
|
{
|
|
protected $table = 'incident';
|
|
|
|
// Table contains created_at/updated_at; enable auto timestamps (recommended).
|
|
public $timestamps = true;
|
|
|
|
protected $fillable = ['student_id', 'student_name', 'grade', 'incident', 'incident_datetime', 'incident_state', 'updated_by_open', 'open_description', 'updated_by_closed', 'close_description', 'action_taken', 'updated_by_canceled', 'cancel_description', 'semester', 'school_year', 'created_at', 'updated_at'];
|
|
|
|
protected $casts = [
|
|
'student_id' => 'integer',
|
|
'updated_by_open' => 'integer',
|
|
'updated_by_closed' => 'integer',
|
|
'updated_by_canceled' => 'integer',
|
|
'incident_datetime' => 'datetime',
|
|
];
|
|
|
|
/* Optional relationships */
|
|
public function student()
|
|
{
|
|
return $this->belongsTo(Student::class, 'student_id');
|
|
}
|
|
|
|
public function openedBy()
|
|
{
|
|
return $this->belongsTo(User::class, 'updated_by_open');
|
|
}
|
|
|
|
public function closedBy()
|
|
{
|
|
return $this->belongsTo(User::class, 'updated_by_closed');
|
|
}
|
|
|
|
public function canceledBy()
|
|
{
|
|
return $this->belongsTo(User::class, 'updated_by_canceled');
|
|
}
|
|
}
|