@if (session()->has('success'))
@endif
{{ session('success') }}
@endif
@if (session()->has('error'))
{{ session('error') }}
@endif
@if(!$formMode && !$viewMode)
@endif
@if($formMode)
{{ $updateMode ? 'Edit Crypto ICO' : 'Add Crypto ICO' }}
All Crypto ICOs
{{-- Filters --}}
{{--
--}}
{{-- Table --}}
| # | Image | Type | Name | Symbol | Start Date | End Date | Approved | Actions |
|---|---|---|---|---|---|---|---|---|
| {{ $index + 1 + ($cryptosIcos->currentPage() - 1) * $cryptosIcos->perPage() }} |
@if($crypto->imageUrl)
|
@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 }} | {{ date('d M Y', strtotime($crypto->start_time)) }} | {{ date('d M Y', strtotime($crypto->end_time)) }} | {!! $crypto->is_review ? 'Yes' : 'No' !!} | {{-- --}} |
| No ICOs found. | ||||||||
{{ $cryptosIcos->links() }}