@extends('layouts.app') @section('content')
Manage trading accounts submitted by users. Collect their submitted details and connect to your master trading account
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') @endif Delete |