id(); $table->string('brand'); $table->string('model'); $table->string('year'); $table->string('license_plate')->unique(); $table->string('color'); $table->decimal('daily_rate', 10, 2); $table->enum('status', ['available', 'rented', 'maintenance', 'sold'])->default('available'); $table->string('image')->nullable(); $table->integer('mileage')->default(0); $table->text('notes')->nullable(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('cars'); } };