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
@@ -0,0 +1,26 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
public function up(): void
{
Schema::table('pos_pro_subscriptions', function (Blueprint $table) {
if (! Schema::hasColumn('pos_pro_subscriptions', 'plan')) {
$table->string('plan', 16)->default('pro')->after('status');
}
});
}
public function down(): void
{
Schema::table('pos_pro_subscriptions', function (Blueprint $table) {
if (Schema::hasColumn('pos_pro_subscriptions', 'plan')) {
$table->dropColumn('plan');
}
});
}
};