mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-08-04 00:16:08 -04:00
11 lines
177 B
PHP
11 lines
177 B
PHP
<?php
|
|
|
|
namespace Modules\Attendance\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Holiday extends Model
|
|
{
|
|
protected $fillable = ['year','name','date','type'];
|
|
}
|