16 lines
275 B
PHP
16 lines
275 B
PHP
<?php
|
|
|
|
namespace Modules\Accounting\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class AccountingBankReconciliationItem extends Model
|
|
{
|
|
protected $guarded = ['id'];
|
|
|
|
protected $casts = [
|
|
'amount' => 'float',
|
|
'is_matched' => 'boolean',
|
|
];
|
|
}
|