@extends('admin.master') @section('title', __('Balances')) @section('content')
@foreach($balances as $balance) @endforeach
  {{ __('Email') }} {{ __('Earnings') }} {{ __('Eligible') }} {{ __('Method') }} {{ __('Details') }} {{ __('Created at') }} {{ __('Action') }}
{{ ucfirst($balance->email) }} {{ price($balance->earnings, false) }} @if($balance->has_minimum) @else @endif {{ ucfirst(explode('_', $balance->method)[0] ?? null) }} {{ $balance->updated_at }} @if($balance->has_minimum) @if($balance->method === 'paypal_account') @elseif($balance->method === 'bank_account') @endif @else - @endif
@if($balances->hasPages())
{{ $balances->appends($base_uri)->onEachSide(1)->links() }} {{ $balances->appends($base_uri)->links('vendor.pagination.simple-semantic-ui') }} @endif
@endsection