string('call_to_action_text')->nullable()->after('title'); $table->string('call_to_action_link')->nullable()->after('url'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('entries', function (Blueprint $table) { $table->dropColumn('call_to_action_text'); $table->dropColumn('call_to_action_link'); }); } };