Allowance check
This commit is contained in:
@@ -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',
|
||||
];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user