20 lines
294 B
PHP
20 lines
294 B
PHP
|
|
<?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',
|
||
|
|
];
|
||
|
|
}
|