id(); $table->string('title'); $table->string('image'); $table->string('link')->nullable(); $table->boolean('is_active')->default(true); $table->integer('sort_order')->default(0); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('banners'); } };