@extends('admin.layouts.main') @section('panel')

{{ $setTitle }}

@if(blank($matrixLog))
There are no enrolled available
@else
  • {{ __('Initiated At') }} {{ showDateTime($matrixLog->created_at) }}
  • {{ __('Trx') }} {{ $matrixLog->trx }}
  • {{ __('Schema Name') }} {{ $matrixLog->name }}
  • {{ __('Invest Amount') }} {{ getCurrencySymbol() }}{{shortAmount($matrixLog->price)}}
  • {{ __('User-Based Referral Bonus') }} {{ getCurrencySymbol() }}{{shortAmount($matrixLog->referral_reward)}}
  • {{ __('Referral Users') }} {{ $matrixLog?->user?->referredUsers->count() }}
  • {{ __('Referral Commissions') }} {{ getCurrencySymbol() }}{{shortAmount($matrixLog->referral_commissions)}}
  • {{ __('Level Commissions') }} {{ getCurrencySymbol() }}{{shortAmount($matrixLog->level_commissions)}}
  • {{ __('Total Profit') }} {{ getCurrencySymbol() }}{{shortAmount($matrixLog->referral_commissions + $matrixLog->level_commissions)}}
  • {{ __('Status') }} {{ \App\Enums\Matrix\InvestmentStatus::getName($matrixLog->status) }}
@endif
@endsection