id(); $table->string('code'); $table->foreignId('client_id')->constrained()->onDelete('cascade'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('branches'); } };