25 lines
442 B
PHP
25 lines
442 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class UtilityFee extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $fillable = [
|
|
'transaction_date',
|
|
'category',
|
|
'amount',
|
|
'invoice_number',
|
|
'description',
|
|
];
|
|
|
|
protected $casts = [
|
|
'transaction_date' => 'date:Y-m-d',
|
|
'amount' => 'decimal:2',
|
|
];
|
|
}
|