@php $page = 'minings' @endphp @extends('includes.layout') @section('content')

{{ Str::ucfirst($type) }} ASIC Miners

{{ Str::ucfirst($type) }} ASIC Miners Lists

@forelse ($miners as $miner)
{{-- Miner Image --}} @if($miner->image) {{ $miner->name }} @else No image @endif {{-- Status Badge --}} {{ ucfirst($miner->status) }}

{{ $miner->name }}

@if($miner->tag)

Tag: {{ strtoupper($miner->tag) }}

@endif @if($miner->category)

Category: {{ Str::ucfirst($miner->category) }}

@endif

Hashrate: {{ $miner->hashrate }}

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

Price: ${{ number_format($miner->price, 2) }}

Contracts: {{ $miner->contracts_count }}

@if($miner->algorithm)

Algorithm: {{ strtoupper($miner->algorithm) }}

@endif @if($miner->installation_fee)

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

@endif @if($miner->hosting_fee)

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

@endif @if($miner->mining_output)

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

@endif @if($miner->noise)

Noise: {{ Str::ucfirst($miner->noise) }}

@endif @if($miner->energy_efficiency)

Energy Efficiency: {{ Str::ucfirst($miner->energy_efficiency) }}

@endif @if($miner->operating_temperature)

Operating Temperature: {{ Str::ucfirst($miner->operating_temperature) }}

@endif @if($miner->connection_type)

Connection Type: {{ Str::ucfirst($miner->connection_type) }}

@endif @if($miner->description)

{{ Str::limit($miner->description, 80) }}

@endif
{{-- Edit Miner --}} {{-- Delete Miner --}}
{{-- Update Modal --}} {{-- Delete Confirmation Modal --}} @empty

No miners found

@endforelse
@endsection