feat(Notification & membership route)

This commit is contained in:
2025-10-26 00:16:25 +02:00
parent 868b9a837b
commit ac0a89e34d
19 changed files with 393 additions and 279 deletions

View File

@@ -16,7 +16,7 @@ return new class extends Migration
$table->foreignId('member_id')->constrained('members')->onDelete('cascade');
$table->foreignId('admin_id')->nullable()->constrained('users')->onDelete('set null');
$table->foreignId('package_id')->constrained('packages')->onDelete('cascade');
$table->date('start_date');
$table->date('start_date')->nullable();
$table->date('end_date')->nullable();
$table->enum('status', ['active', 'expired', 'pending'])->default('pending');
$table->decimal('amount', 10, 2)->default(0);