id(); $table->string('plat_number'); $table->foreignId('member_id')->constrained(); $table->foreignId('type_vehicle_id')->constrained(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('vehicles'); } };