20 lines
336 B
PHP
20 lines
336 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App;
|
||
|
|
|
||
|
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
|
||
|
|
class DocumentType extends Model
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* The table associated with the model.
|
||
|
|
*
|
||
|
|
* @var string
|
||
|
|
*/
|
||
|
|
protected $table = 'document_types';
|
||
|
|
|
||
|
|
protected $fillable = [
|
||
|
|
'name', 'description', 'status', 'incoming', 'outgoing', 'internal'
|
||
|
|
];
|
||
|
|
}
|