Refactor navigation settings across multiple pages: update navigation groups and labels for HomePageSettings, ManageCtaSettings, ManagePortfolio, ManageSolutions, ManageSuccess, and ManageSite. Introduce solutions data fetching in OurSolutionPageController and enhance header navigation with dynamic solutions list. Update database migration to include new fields for solutions.

This commit is contained in:
2025-07-28 20:06:11 +05:00
parent 74fc3b5e6a
commit 7fdb99cc79
16 changed files with 182 additions and 16 deletions

View File

@@ -13,6 +13,9 @@ return new class extends Migration
{
Schema::create('solutions', function (Blueprint $table) {
$table->id();
$table->string('title');
$table->text('description');
$table->string('slug')->unique();
$table->timestamps();
});
}