text('favicon')->nullable(); $table->text('header_title')->nullable(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('settings', function ($table) { $table->dropColumn('favicon'); $table->dropColumn('header_title'); }); } };