@push('metadata') @php $mTitle = $categoryData['seo_title'] ?? ''; $mDescr = $categoryData['meta_description'] ?? ''; $mKWords = $categoryData['meta_keywords'] ?? ''; $faqs = $categoryData['faqs'] ?? '[]'; $mUrl = url()->current(); $mImage = config('constants.category_details'); $title = 'Crypto Categories'; $baseUrl = url('/crypto-categories/'); @endphp @push('pageId') @endpush {{ @$mTitle }} {{----}} @endpush @push('head_scripts') {{-- Archive page schema --}} {!! SchemaHelper::collectionPageSchema($mTitle, $mTitle, $mDescr) !!} {{-- Breadcrumb --}} {!! SchemaHelper::getBreadcrumbSchema([ ['name' => 'Home', 'url' => url('/')], ['name' => 'Crypto Categories', 'url' => CommonHelper::makeUrl('crypto-categories')], ['name' => $categoryData['title'] ?? ucwords(str_replace('-', ' ', $slug)), 'url' => $mUrl], ]) !!} {{-- Featured image --}} {!! SchemaHelper::getImageObjectSchema($mImage, $mTitle, 1200, 630) !!} {{-- FAQ --}} @if(!empty($categoryData['faqs'])) {!! SchemaHelper::getFaqSchema($categoryData['faqs']) !!} @endif {{-- ICO Listing --}} {!! SchemaHelper::itemListSchema($mTitle, $mUrl, $baseUrl, $items ?? [], 1, '') !!} @endpush {{-- Breadcrumb --}}
{{-- Top Content Section --}} @if(!empty($categoryData['top_page_content']))
{!! $categoryData['top_page_content'] !!}
@endif {{-- ICO Cards Section --}}
@forelse ($icos as $ico)
{{-- ICO Info --}}
{{ $ico->name }}
{{ $ico->name }} {{ number_format($ico->quantity_of_coin) }}
{{ $ico->status }} {{ CommonHelper::stageNameById($ico->ico_ido_type) }}
{{-- Action Buttons --}}
BUY
@csrf
{{-- Card Footer with Blockchain & Category --}}
@empty

No ICO listings found.

@endforelse
{{-- Load More Button --}}
{{ $icos->onEachSide(1)->links('vendor.pagination.bootstrap-5') }}
@if(!empty($prev)) @else
@endif @if(!empty($next)) @else
@endif
@if (!empty($categoryData['description']))
{!! CommonHelper::addNoFollowToExternalLinksPress($categoryData['description']) !!}
@endif
@php $faqData = $faqs; if (is_string($faqData)) { $faqData = json_decode($faqData, true); } $faqData = is_array($faqData) ? $faqData : []; @endphp @if(!empty($faqData)) @endif