id(); $table->string('container_name'); $table->string('container_number')->unique(); $table->date('container_date'); $table->string('excel_file')->nullable(); $table->timestamps(); }); } public function down() { Schema::dropIfExists('containers'); } };