edms/app/AssignAbsence.php

20 lines
294 B
PHP
Raw Permalink Normal View History

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