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

{{ $title }}

@foreach ($traderPerformances as $traderPerformance) @endforeach
# Trader Performance
{{ $loop->iteration }} {{ $traderPerformance->trader->user->name }} {{ $traderPerformance->direction->symbol() . $traderPerformance->roiPercentage() }} View Edit
@csrf @method('DELETE')
@foreach ($traderPerformances as $traderPerformance)
Trader: {{ $traderPerformance->trader->user->name }}

Performance: {{ $traderPerformance->direction->symbol() . $traderPerformance->roiPercentage() }}

View Edit
@csrf @method('DELETE')
@endforeach
@endsection