@extends('admin.layouts.app') @section('panel')
@forelse($practiceLogs as $practiceLog) @empty @endforelse
@lang('User') @lang('Crypto') @lang('Amount') @lang('In Time') @lang('HighLow') @lang('Result') @lang('Status') @lang('Date')
{{ @$practiceLog->user->full_name }}
@{{ @$practiceLog->user->username }}
{{ @$practiceLog->crypto->symbol }}
{{ @$practiceLog->crypto->name }}
{{ showAmount($practiceLog->amount) }} {{ showDateTime($practiceLog->in_time) }} @if ($practiceLog->high_low == 1) @lang('High') @elseif($practiceLog->high_low == 2) @lang('Low') @endif @php echo $practiceLog->resultStatus; @endphp @php echo $practiceLog->statusBadge; @endphp {{ showDateTime($practiceLog->created_at) }}
{{ __($emptyMessage) }}
@if ($practiceLogs->hasPages()) @endif
@endsection @push('breadcrumb-plugins') @endpush