add tests batch 20

This commit is contained in:
root
2026-06-09 01:03:53 -04:00
parent 95efb9652e
commit 6be4875c5e
1502 changed files with 13797 additions and 11313 deletions
+8 -7
View File
@@ -2,6 +2,8 @@
namespace App\Models;
use App\Models\BaseModel;
class PayPalPayment extends BaseModel
{
protected $table = 'paypal_payments';
@@ -11,7 +13,6 @@ class PayPalPayment extends BaseModel
* In Laravel: enable timestamps but disable UPDATED_AT.
*/
public $timestamps = true;
const UPDATED_AT = null;
protected $fillable = [
@@ -37,10 +38,10 @@ class PayPalPayment extends BaseModel
protected $casts = [
'parent_school_id' => 'integer',
'amount' => 'decimal:2',
'paypal_fee' => 'decimal:2',
'net_amount' => 'decimal:2',
'synced' => 'boolean',
'sync_attempts' => 'integer',
'amount' => 'decimal:2',
'paypal_fee' => 'decimal:2',
'net_amount' => 'decimal:2',
'synced' => 'boolean',
'sync_attempts' => 'integer',
];
}
}