{{ __('Quản lí cổng') }}
| {{ __('ID') }} | {{ __('Tên cổng') }} | {{ __('Trạng thái cashin') }} | {{ __('Trạng thái cashout') }} | {{ __('Loại cổng') }} | {{ __('Domain') }} | {{ __('SignKey') }} | {{ __('Tỉ lệ nhận đơn(%)') }} | {{ __('Ghi chú') }} | {{ __('operation') }} |
|---|---|---|---|---|---|---|---|---|---|
| {{ $gate->id }} | {{ $gate->name }} | @if ($gate->status == 'on') Mở @else Đóng @endif | @if ($gate->state_cashout) Mở @else Đóng @endif | @if ($gate->type == 'momo') Momo @elseif ($gate->type == 'bank') Bank @elseif ($gate->type == 'momo&bank') Momo & Bank @elseif ($gate->type == 'bank&usdt') Bank & USDT @elseif ($gate->type == 'card') Card @elseif ($gate->type == 'usdt') USDT @elseif ($gate->type == 'all') All(Momo, Bank, Card, USDT) @endif | {{ $gate->domain }} | {{ $gate->sign_key }} | {{ $gate->rate }} | {{ $gate->note }} |
@if ($gate->status == 'on')
{{ __('Đóng cổng IN') }}
@else
{{ __('Mở cổng IN') }}
@endif
|