mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-08-19 12:34:03 +00:00
15 lines
212 B
PHP
15 lines
212 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class Document extends AbstractModel
|
|
{
|
|
|
|
protected $table = 'documents';
|
|
|
|
protected $fillable = [
|
|
'type', 'reference_id', 'document_type', 'name', 'primary'
|
|
];
|
|
|
|
}
|