@extends('layouts.app') @section('title','Mining') @section('content')
Reward mining

Mine without the machine.

Rewards accrue from server timestamps—even while you are away.

● Server authoritative
@foreach($configs as $config)@php($active=$sessions->first(fn($s)=>$s->asset_id===$config->asset_id && $s->status->value==='active'))
{{ $config->asset->name }}
{{ $config->asset->network ?: 'Native network' }}
@if($active)

Started {{ $active->started_at->diffForHumans() }} · Ends {{ $active->expires_at->diffForHumans() }}

@csrf
@csrf
@else
{{ rtrim(rtrim($config->rate,'0'),'.') }} {{ $config->asset->symbol }}/{{ $config->rate_unit }}

Up to {{ round($config->max_duration_seconds/3600,1) }} hours · {{ round($config->cooldown_seconds/60) }} minute cooldown

@csrf
@endif
@endforeach

Mining history

@forelse($sessions as $session)@empty@endforelse
AssetStartedStoppedAccruedStatusAction
{{ $session->asset->symbol }}{{ $session->started_at->format('M j, H:i') }}{{ $session->stopped_at?->format('M j, H:i') ?: '—' }}{{ rtrim(rtrim($session->accrued_reward,'0'),'.') }}@if(in_array($session->status->value,['stopped','expired']))
@csrf
@else—@endif
No mining sessions yet.
@endsection