@extends('dashboard.admin.layouts.app') @section('content')

{{ $title }}

UUID
{{ $trader->uuid }}
Name
{{ $trader->user->name }}
@if ($trader->image)
Image
{{ $trader->user->name }}
@endif
Balance
{{ currency($trader->user->currency) . formatAmount($trader->balance) }}
Status
{{ $trader->status->label() }}
Experience
{{ $trader->experience->label() }}
@if ($trader->notes)
Notes
{{ $trader->notes }}
@endif
View Edit
@csrf @method('DELETE')
@endsection