add school year model
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
class SchoolYear extends BaseModel
|
||||
{
|
||||
public const STATUS_DRAFT = 'draft';
|
||||
public const STATUS_ACTIVE = 'active';
|
||||
public const STATUS_CLOSED = 'closed';
|
||||
public const STATUS_ARCHIVED = 'archived';
|
||||
|
||||
protected $table = 'school_years';
|
||||
|
||||
protected $fillable = [
|
||||
'name',
|
||||
'start_date',
|
||||
'end_date',
|
||||
'status',
|
||||
'is_current',
|
||||
'closed_at',
|
||||
'closed_by',
|
||||
];
|
||||
|
||||
protected $casts = [
|
||||
'start_date' => 'date',
|
||||
'end_date' => 'date',
|
||||
'is_current' => 'boolean',
|
||||
'closed_at' => 'datetime',
|
||||
'closed_by' => 'integer',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user