@php $page = 'mining-store' @endphp @extends('includes.layout') @section('content')

Promo

@forelse ($promos as $item)
{{-- Left content --}}

{{ $item->asic->name }}

Hashrate: {{ $item->asic->hashrate }} TH/s

Duration: {{ \Carbon\Carbon::parse($item->start_date)->format('M d, Y') }} - {{ \Carbon\Carbon::parse($item->end_date)->format('M d, Y') }}

Discount: {{ $item->discount_type == 'flat' ? '$' : '%' }}{{ $item->discount_value }}

Claim Now
@empty

No ASIC promo found

@endforelse
@endsection