id(); $table->foreignId('user_id')->constrained()->cascadeOnDelete(); $table->foreignId('barbershop_id')->constrained('barbershop')->cascadeOnDelete(); $table->string('name', 100); $table->decimal('price', 8, 2); $table->text('description'); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('services'); } };