@extends('admin.layouts.main') @push('styles') @endpush @section('content')

Mining Plans

@if(session('success')) @endif @if(session('warning')) @endif @if(session('danger')) @endif

Mining Plans

Add New Plan
@forelse($plans as $plan) @empty @endforelse
# Name Icon Tagline Investment Range Daily ROI Hourly Rate Sort Order Status Actions
{{ $loop->iteration }} {{ $plan->name }} @if($plan->subtitle)
{{ $plan->subtitle }} @endif
@if($plan->icon_class) @else - @endif {{ $plan->tagline ?? '-' }} ${{ number_format($plan->min_investment, 2) }} - ${{ number_format($plan->max_investment, 2) }} {{ number_format($plan->daily_roi_min, 2) }}% - {{ number_format($plan->daily_roi_max, 2) }}% {{ number_format($plan->hourly_rate, 2) }}% {{ $plan->sort_order }} @if($plan->is_active) Active @else Inactive @endif
@csrf @method('DELETE')
No mining plans found. Create one now.
@endsection @push('scripts') @endpush