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

Buy Asics

@forelse ($asics as $item)
@if($item->tag == 'best')
Best Seller
@elseif($item->tag == 'new')
New
@elseif($item->tag == 'hot')
Hot Deal
@endif

{{ $item->name }}
{{ $item->hashrate }}TH/s

{{-- Miner Image --}} @if($item->image) {{ $item->name }} @else No image @endif

Power: {{ $item->power_consumption }} W

Mining Output: ${{ number_format($item->mining_output, 2) }}

Installation Fee: ${{ number_format($item->installation_fee, 2) }}

Hosting Fee: ${{ number_format($item->hosting_fee, 2) }}

Setup Duration: {{ $item->setup_duration }} Days

@empty

No asic miner found

@endforelse
@endsection