@extends('layouts.app') @section('title') {{ __('Gate') }} @endsection @section('gate') active @endsection @section('section.header')

{{ __('Quản lí cổng') }}

@endsection @section('section.content')
@if (Session::has('success'))
{{ Session::get('success') }}
@endif @if (Session::has('error'))
{{ Session::get('error') }}
@endif
Loading...
Hệ thống đang xử lí, vui lòng chờ...

{{ __('Quản lí cổng') }}

@foreach ($gates as $gate) @endforeach
{{ __('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
@csrf @method('DELETE')
Chỉnh sửa Cổng

@csrf @method('PUT')
@error('type') * {{ $message }} @enderror
@error('state_cashout') * {{ $message }} @enderror
Chỉnh sửa tỷ lệ nhận đơn
@csrf @foreach ($openGates as $gate) @endforeach
Tên Cổng Tỷ Lệ (%)
{{ $gate->name }}
Tạo Cashin

@csrf
@endsection @section('scripts') @endsection @section('styles') @endsection