id(); $table->foreignId('user_id')->constrained()->cascadeOnDelete(); $table->foreignId('barbershop_id')->constrained('barbershop')->cascadeOnDelete(); $table->time('check_in'); $table->time('check_out')->nullable(); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('attendances'); } };