Add Business tier and Paystack prepaid billing for POS.
Deploy Ladill POS / deploy (push) Successful in 35s

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-06-30 01:55:38 +00:00
co-authored by Cursor
parent f800f0c1ca
commit d66e656b9c
11 changed files with 403 additions and 90 deletions
+5 -1
View File
@@ -14,10 +14,14 @@ class ProSubscription extends Model
public const STATUS_PAST_DUE = 'past_due';
public const PLAN_PRO = 'pro';
public const PLAN_ENTERPRISE = 'enterprise';
protected $table = 'pos_pro_subscriptions';
protected $fillable = [
'user_id', 'status', 'price_minor', 'currency', 'auto_renew',
'user_id', 'status', 'plan', 'price_minor', 'currency', 'auto_renew',
'started_at', 'current_period_end', 'last_charged_at', 'canceled_at',
'last_reference', 'last_error',
];