edms/app/Absent.php

20 lines
292 B
PHP
Raw Normal View History

2022-06-06 05:07:54 +00:00
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Absent extends Model
{
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'absents';
protected $fillable = [
'user_id', 'start_date', 'end_date',
];
}