24 lines
394 B
PHP
24 lines
394 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class ArchiveHistory extends Model
|
|
{
|
|
protected $fillable = [
|
|
'historyable_type',
|
|
'historyable_id',
|
|
'issue_at',
|
|
'return_at',
|
|
'name_org',
|
|
'employee_name',
|
|
'employee_position',
|
|
];
|
|
|
|
public function historyable()
|
|
{
|
|
return $this->morphTo();
|
|
}
|
|
}
|