@extends('layouts.frontend.master') @section('seo') @include('frontend.global.seo', [ 'name' => $content->name ?? '', 'title' => $content->seo_title ?? $content->name, 'description' => $content->seo_description ?? '', 'keyword' => $content->seo_keywords ?? '', 'schema' => $content->seo_schema ?? '', 'seoimage' => $content->image ?? '', 'created_at' => $content->created_at, 'updated_at' => $content->updated_at, ]) @endsection @section('content') @include('frontend.global.banner', [ 'name' => $content->name, 'banner' => $content->banner ?? null, 'parentname' => 'Categories', 'parentlink' => '/categories', ]) @if (!empty($content->image || $content->description))
{!! get_image($content->image, '', 'activity') !!}
{!! $content->description ?? '' !!}
@endif @if ($subcategories->isNotEmpty())
@foreach ($subcategories as $packs)
{!! get_image($packs->image) !!}

{{ $packs->name ?? '' }}

{!! stripLetters($packs->description, 95, '...') !!}

Learn More
@endforeach
@endif @if ($blogs->isNotEmpty())

Popular Posts

@foreach ($blogs as $packs)
{!! get_image($packs->image, '', 'category') !!}

{{ $packs->name ?? '' }}

{!! stripLetters($packs->description, 95, '...') !!}

Read More
@endforeach
@endif @endsection