Allowance check

This commit is contained in:
ISMAIL MASSERAN
2026-04-14 02:34:00 +00:00
parent 0c4d200839
commit 3775c4a876
100 changed files with 81493 additions and 3226 deletions
+28
View File
@@ -0,0 +1,28 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class AllowancePayout extends Model
{
protected $table = 'allowance_payouts';
protected $fillable = [
'election_id',
'voter_id',
'method',
'status',
'amount_cents',
'currency',
'paid_by_admin_id',
'paid_at',
'reference',
'note',
];
protected $casts = [
'paid_at' => 'datetime',
];
}