@if (session()->has('success')) @endif @if (session()->has('error')) @endif @if($viewMode && $cryptoToView)
View Crypto ICO Details
{{-- Basic Info --}}
{{ $cryptoToView->name }}
{{ $cryptoToView->alias }}
{{ $cryptoToView->title }}
{{ $cryptoToView->slug }}
@if($cryptoToView->type == 1) Coin @else Token @endif
@switch($cryptoToView->ico_ido_type) @case(0) ICO @break @case(1) IDO @break @case(2) IEO @break @case(3) Presale @break @endswitch
{{-- Dates --}}
{{ $cryptoToView->start_time }}
{{ $cryptoToView->end_time }}
{{-- Image --}}

@if($cryptoToView->image) @else No Image @endif
{{-- Financial --}}
{{ $cryptoToView->ico_price }}
{{ $cryptoToView->soft_cap }}
{{ $cryptoToView->hard_cap }}
{{-- Links --}}
{{ $cryptoToView->where_to_buy }}
{{-- Social --}}
{{ $cryptoToView->twitter }}
{{ $cryptoToView->telegram }}
{{ $cryptoToView->discord }}
{{-- Description --}}
{!! $cryptoToView->description !!}
{{-- SEO --}}

SEO Details
{{ $cryptoToView->seo_title }}
{{ $cryptoToView->meta_keywords }}
{{ $cryptoToView->focus_keyword }}
{{ $cryptoToView->meta_description }}
@endif
@if(($role_id == 1) || in_array(29, $permissions)) @if(!$formMode && !$viewMode) @endif @endif {{-- My Drafts Toggle Button --}} @php $draftCount = \App\Models\CryptoCoinsIcosDraft::count(); @endphp @if($draftCount > 0) @endif
{{-- ══════════════════════════════════════════════════════════════ --}} {{-- ── DRAFT PANEL (slide toggle, no delete) ──────────────────── --}} {{-- ══════════════════════════════════════════════════════════════ --}} @if($showDraftModal) @endif {{-- ── END DRAFT PANEL ─────────────────────────────────────────── --}} @if($formMode)
{{ $updateMode ? 'Edit Crypto ICO' : 'Add Crypto ICO' }}
@if(!$updateMode)
Saving draft... Draft saved at Auto-saves every 2 minutes @if($draftId) @endif
@endif
@include('livewire.admin.partials.crypto-icos-form')
@endif @if($listtableMode)
All Crypto ICOs
{{-- Filters --}}
{{-- Table --}} @forelse ($cryptosIcos as $index => $crypto) {{----}} @empty @endforelse
Image Type Name Symbol Authors Category/Sub-Category Start Date End Date Approved Actions
{{ $index + 1 + ($cryptosIcos->currentPage() - 1) * $cryptosIcos->perPage() }} @if($crypto->imageUrl) @else No Image @endif @switch($crypto->ico_ido_type) @case(0) ICO @break @case(1) IDO @break @case(2) IEO @break @case(3) Presale @break @default - @endswitch {{ $crypto->name }} {{ $crypto->alias }} {{ $crypto->postAuthor?->dispaly_name }} {{ optional(collect($categories)->firstWhere('id', $crypto->category_id))->title ?? '-' }} / {{ optional(collect($subcategories)->firstWhere('id', $crypto->sub_category_id))->title ?? '-' }} {{ date('d M Y', strtotime($crypto->start_time)) }} {{ date('d M Y', strtotime($crypto->end_time)) }} {!! $crypto->is_review ? 'Yes' : 'No' !!}
@if(($role_id == 1) || in_array(30, $permissions)) @endif @if(($role_id == 1) || in_array(31, $permissions)) @endif @if(($role_id == 1) || in_array(33, $permissions)) @endif @if(($role_id == 1) || in_array(32, $permissions)) @endif
No ICOs found.
{{ $cryptosIcos->links() }}
@endif