29 lines
542 B
PHP
29 lines
542 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Models;
|
||
|
|
|
||
|
|
use App\Traits\BelongsToTenant;
|
||
|
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
|
||
|
|
class NumberingRule extends Model
|
||
|
|
{
|
||
|
|
use BelongsToTenant;
|
||
|
|
|
||
|
|
protected $fillable = [
|
||
|
|
'tenant_id',
|
||
|
|
'document_type',
|
||
|
|
'rule_name',
|
||
|
|
'pattern',
|
||
|
|
'reset_period',
|
||
|
|
'sequence_padding',
|
||
|
|
'is_active',
|
||
|
|
'created_by',
|
||
|
|
'updated_by',
|
||
|
|
];
|
||
|
|
|
||
|
|
protected $casts = [
|
||
|
|
'pattern' => 'array',
|
||
|
|
'is_active' => 'boolean',
|
||
|
|
'sequence_padding' => 'integer',
|
||
|
|
];
|
||
|
|
}
|