id(); $table->string('name'); $table->decimal('cost', 12, 2); $table->string('file_path')->nullable(); $table->date('deadline')->nullable(); $table->boolean('paid')->default(false); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('bills'); } };