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

Trading Accounts

Manage trading accounts submitted by users. Collect their submitted details and connect to your master trading account

@if ($settings->subscription_type == 'Percentage') @endif
@if ($settings->use_copytrade) @endif
@foreach ($subscriptions as $sub) @endforeach
User Account Account Password Account Type MT Type Account Name Currency Leverage Server Provider Duration Submitted at Started at Expiring at Status Action
{{ $sub->tuser->name }} {{ $sub->tuser->l_name }} {{ $sub->mt4_id }} {{ $sub->mt4_password }} {{ $sub->account_type }} {{ $sub->mt_type }} {{ $sub->account_name }} {{ $sub->currency }} {{ $sub->leverage }} {{ $sub->server }} {{ $sub->provider ? $sub->provider : '-' }} {{ $sub->duration ? $sub->duration : '-' }} {{ $sub->created_at->toDayDateTimeString() }} @if (!empty($sub->start_date)) {{ $sub->start_date->toDayDateTimeString() }} @else Not Started yet @endif @if (!empty($sub->end_date)) {{ $sub->end_date->toDayDateTimeString() }} @else Not Started yet @endif $sub->status === 'Active', 'badge-danger' => $sub->status !== 'Active', ])>{{ $sub->status }} @if ($sub->status == 'Pending')
@csrf
@endif Delete
{{ $subscriptions->links() }}
@endsection