@extends('backend.layouts.main') @section('title') {{ __('Balances') }} @endsection @section('content') @if($balances->isEmpty()) @else @foreach ($balances as $coin => $balance) @endforeach
{{ __('Coin') }} {{ __('Status') }} {{ __('Balance') }}
{{ $coin }} {{ $balance['status'] . ' / ' . $balance['coin_status'] }} {{ $balance['balancef'] }}
@endif @endsection