e0dfc3ec82
API CI/CD / Validate (composer + pint) (push) Successful in 3m15s
API CI/CD / Test (PHPUnit) (push) Failing after 5m4s
API CI/CD / Build frontend assets (push) Successful in 1m3s
API CI/CD / Security audit (push) Failing after 49s
API CI/CD / Deploy to shared hosting (PHP) (push) Has been skipped
28 lines
523 B
PHP
28 lines
523 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class FinanceNotificationLog extends BaseModel
|
|
{
|
|
protected $table = 'finance_notification_logs';
|
|
|
|
protected $fillable = [
|
|
'parent_id',
|
|
'student_id',
|
|
'invoice_id',
|
|
'payment_id',
|
|
'refund_id',
|
|
'event_charge_id',
|
|
'installment_id',
|
|
'notification_type',
|
|
'channel',
|
|
'recipient',
|
|
'subject',
|
|
'status',
|
|
'sent_at',
|
|
'failed_at',
|
|
'error_message',
|
|
'created_by',
|
|
];
|
|
}
|