28 lines
870 B
PHP
28 lines
870 B
PHP
<?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::create('payments', function (Blueprint $table) {
|
|
$table->id();
|
|
$table->foreignId('rental_id')->constrained()->onDelete('cascade');
|
|
$table->decimal('amount', 10, 2);
|
|
$table->enum('method', ['cash', 'card', 'bank_transfer', 'online', 'other']);
|
|
$table->enum('status', ['pending', 'completed', 'failed', 'refunded'])->default('completed');
|
|
$table->string('transaction_id')->nullable();
|
|
$table->text('notes')->nullable();
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
public function down(): void
|
|
{
|
|
Schema::dropIfExists('payments');
|
|
}
|
|
};
|