@extends('dashboard.admin.layouts.app')
@section('content')
- UUID
- {{ $trader->uuid }}
- Name
- {{ $trader->user->name }}
@if ($trader->image)
- Image
-
@endif
- Balance
- {{ currency($trader->user->currency) . formatAmount($trader->balance) }}
- Status
-
{{ $trader->status->label() }}
- Experience
-
{{ $trader->experience->label() }}
@if ($trader->notes)
- Notes
-
{{ $trader->notes }}
@endif
@endsection