@once {{-- ================= CATEGORY SEO ================= --}} @push('head') {{ $category->meta_title ?? $category->name }} @endpush {{-- ================= CATEGORY SCHEMA FROM DB ================= --}} @foreach ([$category->schema_markup, $category->faq_schema, $category->org_schema, $category->webpage_schema, $category->article_schema, $category->breadcrumb_schema, $category->localbusiness_schema] as $schema) @if (!empty($schema)) @push('schema') {!! $schema !!} @endpush @endif @endforeach @endonce

{{ $category->name }}

@if (!empty($category->video_url))
@endif

{{ $category->h1 ?? 'No Data Found' }}

{!! nl2br(trim(preg_replace('/\n+/', "\n", $category->description_sub ?? 'No Description'))) !!}

{{ $category->h2 ?? 'No Data Found' }}

{!! nl2br(trim(preg_replace('/\n+/', "\n", $category->description ?? ''))) !!}

{{-- BLOCK 3 --}} @if (!empty($category->h2_title_3) || !empty($category->description_3))
@if (!empty($category->h2_title_3))

{{ $category->h2_title_3 }}

@endif
@if (!empty($category->description_3))

{!! nl2br(trim(preg_replace('/\n+/', "\n", $category->description_3 ?? ''))) !!}

@endif
@endif

Our Services

{{ $category->categoryServices->first()->heading ?? 'Complete Brand Consulting' }}

@foreach ($category->categoryServices as $index => $item) @php $service = $item->service; @endphp
{{ str_pad($index + 1, 2, '0', STR_PAD_LEFT) }}

{{ $item->custom_title ?? $service->title }}

{!! nl2br(e($item->custom_description ?? '')) !!}

@endforeach
@if (!empty($category->why_choose_title) || !empty($category->why_choose_description))
Why Choose Us

{!! $category->why_choose_title !!}

@php $paragraphs = preg_split('/\n+/', $category->why_choose_description); @endphp

{!! nl2br(trim($paragraphs[0] ?? '')) !!}

{!! nl2br(trim($paragraphs[1] ?? '')) !!}

@else
Why Choose content not available
@endif

Other Services We Offer

@php // Services Array $services = [ ['title' => 'Brand Strategy', 'slug' => 'brand-strategy', 'category' => 'strategy-consulting', 'icon' => 'https://pub-d0247e56e5b842aa9e58b7d4adb01047.r2.dev/icon/brand-strategy.png'], ['title' => 'Rural & Semi-Urban Marketing', 'slug' => 'rural-semi-urban-marketing', 'category' => 'strategy-consulting', 'icon' => 'https://pub-d0247e56e5b842aa9e58b7d4adb01047.r2.dev/icon/rural-marketing.png'], ['title' => 'PR and Media', 'slug' => 'pr-and-media', 'category' => 'strategy-consulting', 'icon' => 'https://pub-d0247e56e5b842aa9e58b7d4adb01047.r2.dev/icon/pr-media.png'], ['title' => 'Brand Building & Communication', 'slug' => '#', 'category' => 'brand-building-communication', 'icon' => 'https://pub-d0247e56e5b842aa9e58b7d4adb01047.r2.dev/icon/brand-communication.png'], ['title' => 'Ad Film Production', 'slug' => 'ad-film-production', 'category' => 'brand-building-communication', 'icon' => 'https://pub-d0247e56e5b842aa9e58b7d4adb01047.r2.dev/icon/ad-film.png'], ['title' => 'Brand Identity, Design And Packaging', 'slug' => 'branding-and-packaging', 'category' => 'brand-building-communication', 'icon' => 'https://pub-d0247e56e5b842aa9e58b7d4adb01047.r2.dev/icon/packaging.png'], ['title' => 'Content Creation', 'slug' => 'content-creation', 'category' => 'brand-building-communication', 'icon' => 'https://pub-d0247e56e5b842aa9e58b7d4adb01047.r2.dev/icon/content-creation.png'], ['title' => 'Podcast Channel Management & Distribution', 'slug' => 'podcast-management', 'category' => 'brand-building-communication', 'icon' => 'https://pub-d0247e56e5b842aa9e58b7d4adb01047.r2.dev/icon/podcast.png'], ['title' => 'AI-Enabled Automation', 'slug' => 'ai-enabled-automation', 'category' => 'digital-experiential', 'icon' => 'https://pub-d0247e56e5b842aa9e58b7d4adb01047.r2.dev/icon/ai.png'], ['title' => 'Website Design & Development', 'slug' => 'website-design-development', 'category' => 'digital-experiential', 'icon' => 'https://pub-d0247e56e5b842aa9e58b7d4adb01047.r2.dev/icon/website-development.png'], ['title' => 'Digital Marketing', 'slug' => '#', 'category' => 'digital-marketing', 'icon' => 'https://pub-d0247e56e5b842aa9e58b7d4adb01047.r2.dev/icon/visibility.png'], ['title' => 'Performance Marketing Agency', 'slug' => 'performance-marketing-agency', 'category' => 'digital-marketing', 'icon' => 'https://pub-d0247e56e5b842aa9e58b7d4adb01047.r2.dev/icon/performance-marketing.png'], ['title' => 'Search Engine Optimization', 'slug' => 'seo-agency-mumbai', 'category' => 'digital-marketing', 'icon' => 'https://pub-d0247e56e5b842aa9e58b7d4adb01047.r2.dev/icon/strategy-consulting.png'], ['title' => 'Social Media Marketing', 'slug' => 'social-media-marketing-agency', 'category' => 'digital-marketing', 'icon' => 'https://pub-d0247e56e5b842aa9e58b7d4adb01047.r2.dev/icon/social-media.png'], ['title' => 'Celebrity & Influencer Marketing', 'slug' => '#', 'category' => 'celebrity-influencer-marketing', 'icon' => 'https://pub-d0247e56e5b842aa9e58b7d4adb01047.r2.dev/icon/celebrity-infulencer.png'], ['title' => 'Influencer Marketing', 'slug' => 'influencer-marketing', 'category' => 'celebrity-influencer-marketing', 'icon' => 'https://pub-d0247e56e5b842aa9e58b7d4adb01047.r2.dev/logo/influencer-marketing.png'], ]; // Get the current category from the URL $currentCategory = request()->segment(2); // Filter out the service matching the current category and slug $filteredServices = collect($services)->filter(function ($service) use ($currentCategory) { return $service['category'] !== $currentCategory && $service['slug'] !== request()->segment(3); })->toArray(); @endphp
@foreach ($filteredServices as $service) @endforeach
@if (!empty($category->growth_title) || !empty($category->growth_description))
@php $title = trim($category->growth_title ?? ''); $title = preg_replace('/\s+/', ' ', $title); $words = explode(' ', $title); $line1 = implode(' ', array_slice($words, 0, 2)); // Let’s Turn $line2 = implode(' ', array_slice($words, 2, 4)); // Influencers & Celebrities into $line3 = implode(' ', array_slice($words, 6)); // Growth Engines for Your Brand // 🔥 Highlight only "Influencers & Celebrities" $line2 = preg_replace( '/(Influencers\s*&\s*Celebrities)/i', '$1', $line2, ); // Prevent bad break $line2 = str_replace('into', 'into ', $line2); @endphp

{{ $line1 }} {!! $line2 !!} {{ $line3 }}

@if (!empty($category->growth_description))

{{ $category->growth_description }}

@endif
@else
Growth content not available
@endif