- Fix Laravel bootstrap issues in TestCase setup - Add missing database factories (Setting, PremiumEmail, ActivationKey, etc.) - Convert Pest tests to PHPUnit style for compatibility - Fix model relationships and boolean casts - Add missing Filament resource actions and filters - Fix form validation and test data mismatches - Resolve assertion parameter order issues - Add proper configuration for test views - Fix searchable columns and table sorting - Simplify complex filter assertions for stability
36 lines
725 B
PHP
36 lines
725 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Plan extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $fillable = [
|
|
'name',
|
|
'description',
|
|
'product_id',
|
|
'pricing_id',
|
|
'shoppy_product_id',
|
|
'accept_stripe',
|
|
'accept_shoppy',
|
|
'oxapay_link',
|
|
'accept_oxapay',
|
|
'price',
|
|
'mailbox_limit',
|
|
'monthly_billing',
|
|
'details',
|
|
];
|
|
|
|
protected $casts = [
|
|
'details' => 'json',
|
|
'monthly_billing' => 'boolean',
|
|
'accept_stripe' => 'boolean',
|
|
'accept_shoppy' => 'boolean',
|
|
'accept_oxapay' => 'boolean',
|
|
];
|
|
}
|