{{-- ================= SEO META ================= --}} @push('metadata') @php $pageId = $seoData['id'] ?? ''; $mTitle = $seoData['seo_title'] ?? 'Crypto Categories'; $mDescr = $seoData['meta_description'] ?? ''; $mKWords = $seoData['meta_keywords'] ?? ''; $faqs = $seoData['faq'] ?? '[]'; $mUrl = url()->current(); $mImage = config('constants.crypto_category'); $baseUrl = url('/crypto-categories/'); @endphp {{ $mTitle }} {{-- OpenGraph --}} {{-- Twitter --}} @endpush {{-- ================= SCHEMA ================= --}} @push('head_scripts') {!! SchemaHelper::collectionPageSchema($mTitle,$mTitle,$mDescr) !!} {!! SchemaHelper::getBreadcrumbSchema([ ['name' => 'Home', 'url' => url('/')], ['name' => 'Crypto Categories', 'url' => $mUrl] ]) !!} {!! SchemaHelper::itemListSchema($mTitle,$mUrl,$baseUrl,$items ?? [],1,'') !!} @if(!empty($seoData['faq'])) {!! SchemaHelper::getFaqSchema($seoData['faq']) !!} @endif @endpush {{-- ================= BREADCRUMB ================= --}}
  • Home
  • {{ $seoData['breadcrumb'] ?? 'Crypto Categories' }}
{{-- ================= TOP CONTENT ================= --}}
{!! $seoData['top_page_content'] ?? '' !!}
{{-- ================= SEARCH ================= --}}
{{-- ================= CATEGORY LIST ================= --}}
@forelse ($items as $category) @php $status = $category['status_counts']; @endphp
@foreach ($category['project_icos'] as $ico) {{ $ico['img_alt_title'] }} @endforeach
{{-- TITLE --}} {{ $category['title'] }} {{-- TOTAL --}}
Total Projects: {{ $category['ico_count'] }}
{{-- STATUS --}}
Upcoming {{ $status['upcoming'] ?? 0 }}
Ongoing {{ $status['ongoing'] ?? 0 }}
Ended {{ $status['ended'] ?? 0 }}
@empty
No categories found
@endforelse {{-- ================= LOAD MORE ================= --}}
{{ $items->onEachSide(1)->links('vendor.pagination.bootstrap-5') }}
{{-- ================= BOTTOM CONTENT ================= --}} @if (!empty($seoData['description']))
{!! $seoData['description'] !!}
@endif {{-- ================= FAQ ================= --}} @if(!empty($faqs)) @endif