Purchased ASIC Miners Dashboard
Total Purchased
{{ $contracts->count() }}
Total Spent
${{ number_format($contracts->sum('amount'),
2) }}
Active Miners
{{ $contracts->where('status',
'active')->count() }}
Avg. Hashrate
{{ number_format($contracts->avg(fn($c) => (float)
filter_var($c->miner->hashrate,
FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION)), 2) }}
TH/s
Earnings Over Time
@forelse ($contracts as $item)
{{-- Delete Confirmation Modal --}}
@empty
@endforelse
@if($item->miner->image)
@else
@endif
@endif
{{ $item->miner->name }}
- Category: {{ $item->miner->category }}
- Hashrate: {{ $item->miner->hashrate }}
- Power: {{ $item->miner->power_consumption }} W
- Efficiency: {{ $item->miner->energy_efficiency ?? 'N/A' }}
- Number Of ASIC: {{ $item->quantity }}
- Installation Fee: ${{ number_format($item->miner->installation_fee, 2) }}
- Hosting Fee: ${{ number_format($item->miner->hosting_fee, 2) }}
- ASIC Price: ${{ number_format($item->miner->price, 2) }}
- Contract Amount: ${{ number_format($item->amount, 2) }}
- Contract Started: {{ $item->created_at->format('M d, Y') }}
No purchase asic miner found