@push('metadata') @php $page_id = 36; $mTitle = @$cryptoDetails['seo_title']; $mDescr = @$cryptoDetails['meta_description']; $mKWords = @$cryptoDetails['meta_keywords']; $mUrl = url()->current(); $mImage = config('constants.advertise'); $seoParams = RssFeedHelper::getIcoType($cryptoDetails['ico_ido_type']); @endphp {{ @$mTitle }} @endpush @push('head_scripts') {!! SchemaHelper::webpageSchema($mTitle ?? null, $mDescr ?? null) !!} {!! SchemaHelper::getBreadcrumbSchema([ ['name' => 'Home', 'url' => url('/')], ['name' => $seoParams['title'], 'url' => $seoParams['slug']], ['name' => $cryptoDetails['title'], 'url' => $mUrl] ]) !!} {!! SchemaHelper::getImageObjectSchema($cryptoDetails['image'], $cryptoDetails['title']) !!} @if(!empty($cryptoDetails['faq'])) {!! SchemaHelper::getFaqSchema($cryptoDetails['faq']) !!} @endif {!! SchemaHelper::icoDetailArticleSchema($cryptoDetails) !!} @endpush
{{ $cryptoDetails['img_alt_title'] ?: $cryptoDetails['title'] }}
@php $types = [ 0 => 'ICO', 1 => 'IDO', 2 => 'IEO', 3 => 'Presale', ]; @endphp

{{ $cryptoDetails['name'] }} {{ $types[$type] ?? '' }} ({{ $cryptoDetails['alias'] }})

@php $start = $cryptoDetails['start_time'] ?? null; $end = $cryptoDetails['end_time'] ?? null; $isTba = ($cryptoDetails['start_end_tba'] ?? null) === 'TBA'; @endphp @if($start === 'TBA' && $end === 'TBA') TBA @elseif($start && $end) {{ $start }} to {{ $end }} @elseif($start && !$end) {{ $start }} to {{ $isTba ? 'TBA' : '' }} @elseif(!$start && $end) {{ $isTba ? 'TBA' : '' }} to {{ $end }} @else TBA @endif @php $startTime = $cryptoDetails['start_time'] ?? null; $endTime = $cryptoDetails['end_time'] ?? null; $now = now(); $status = 'Upcoming'; if ($cryptoDetails['start_end_tba'] == 'TBA') { $status = 'Upcoming'; } else { $start = ($startTime && $startTime !== 'TBA') ? \Carbon\Carbon::parse($startTime) : null; $end = ($endTime && $endTime !== 'TBA') ? \Carbon\Carbon::parse($endTime) : null; // Fix invalid range if ($start && $end && $start > $end) { [$start, $end] = [$end, $start]; } if ($end && $now > $end) { $status = 'Ended'; } elseif ($start && $end && $now >= $start && $now <= $end) { $status = 'Ongoing'; } elseif ($start && $now < $start) { $status = 'Upcoming'; } } @endphp {{ $status }}
Social Media:
@if (!empty($cryptoDetails['telegram'])) @endif @if(!empty($cryptoDetails['twitter'])) @endif @if(!empty($cryptoDetails['instagram'])) @endif @if(!empty($cryptoDetails['reddit'])) @endif @if(!empty($cryptoDetails['discord'])) @endif

Published By: {{ $cryptoDetails['post_author']['dispaly_name'] }}

Published at: {{ \Carbon\Carbon::parse($cryptoDetails['created_at'])->format('Y-m-d') }}

Token Details
Token Type {{ CommonHelper::stageNameById($cryptoDetails['ico_ido_type'] ?? null) }}
Token Price {{ $cryptoDetails['ico_price'] }}
Total Tokens {{ $cryptoDetails['total_coin'] }}
Tokens for Sale {{ $cryptoDetails['quantity_of_coin'] }}
@php $quantity = $cryptoDetails['quantity_of_coin'] ?? 0; $total = $cryptoDetails['total_coin'] ?? 0; if (is_numeric($quantity) && is_numeric($total) && $total > 0) { $percent = number_format(($quantity / $total) * 100, 2) . '%'; } else { $percent = 'TBA'; } @endphp
% of Supply {{ $percent }}
Listing Information
Contract Address {{ !empty($cryptoDetails['ico_project_id']) && !empty($contract[$cryptoDetails['ico_project_id']]) ? $contract[$cryptoDetails['ico_project_id']] : '-' }}
@php $qty = $cryptoDetails['quantity_of_coin'] ?? null; $price = $cryptoDetails['ico_price'] ?? null; $goal = $cryptoDetails['fund_asking_for'] ?? null; if (!empty($goal) && $goal !== 'TBA') { $totalAmount = number_format((float) $goal); } elseif (!empty($qty) && $qty !== 'TBA' && !empty($price) && $price !== 'TBA') { $totalAmount = number_format((float) $qty * (float) $price); } else { $totalAmount = 'TBA'; } @endphp
Fundraising Goal {{ $totalAmount }}
Soft Cap {{ !empty($cryptoDetails['soft_cap']) ? $cryptoDetails['soft_cap'] : 'TBA' }}
Hard Cap {{ !empty($cryptoDetails['hard_cap']) ? $cryptoDetails['hard_cap'] : 'TBA' }}
Personal Cap {{ !empty($cryptoDetails['personal_cap']) ? $cryptoDetails['personal_cap'] : 'TBA' }}
Other Information
Restricted Countries {{ $cryptoDetails['country'] ?? 'Other'}}
Category {{ $cryptoDetails['project_category']['title'] ?? 'N/A'}}
Launchpad {{ $cryptoDetails['ico_launchpad']['title'] ?? 'N/A' }}
Currency {{ $cryptoDetails['accept_type'] }}
@if($previous) Previous @endif
@if($next) Next @endif

About {{ $cryptoDetails['name'] }} {{ $types[$type] ?? '' }} Project

{!! CommonHelper::addNoFollowToExternalLinks($cryptoDetails['description']) !!}
@if (!empty($cryptoDetails['author_id']))

{!! $cryptoDetails['post_author']['about_us'] ?? 'No author description is available.' !!}

Read More Articles By {{ $cryptoDetails['post_author']['dispaly_name'] ?? 'Author' }} @if (!empty($cryptoDetails['post_author']['user']['linkedin_url'])) Connect Linkedin @endif
@endif @if(!empty($loadedFaqs))

Frequently Asked Questions

faq Explore Our FAQs

Find quick answers to commonly asked questions.

{{-- SHOW ONLY LOADED FAQS --}} @foreach ($loadedFaqs as $i => $faq) @php $faqId = "faq_{$i}"; @endphp
{!! $faq['answer'] !!}
@endforeach
{{-- LOAD MORE BUTTON --}} @if($hasMore)
@endif
@endif