ultimatepos/Modules/Accounting/Entities/AccountingBankReconciliationItem.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',
];
}