19 lines
379 B
PHP
19 lines
379 B
PHP
<?php
|
|
|
|
namespace Modules\Accounting\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class AccountingPayrollTaxBracket extends Model
|
|
{
|
|
protected $guarded = ['id'];
|
|
|
|
protected $casts = [
|
|
'min_amount' => 'float',
|
|
'max_amount' => 'float',
|
|
'rate_percent' => 'float',
|
|
'fixed_deduction' => 'float',
|
|
'is_active' => 'boolean',
|
|
];
|
|
}
|