@extends('layouts.app') @section('title') {{ __('Cashout - Thiết lập chia đơn') }} @endsection @section('cashout') active @endsection @section('section.header')

{{ __('Thiết lập chia đơn cashout') }}


@endsection @section('section.content')
@if (Session::has('success'))
{{ Session::get('success') }}
@endif @if (Session::has('error'))
{{ Session::get('error') }}
@endif
{{ __('Danh sách tài khoản support') }}
@foreach ($supportUsers as $item) @endforeach
{{ __('Tài khoản') }} {{ __('Trạng thái nhận đơn') }} {{ __('Thao tác') }}
{{ $item->username }} @if ($item->is_enable_split_cashout_order) {{ __('Đang nhận đơn') }} @else {{ __('Tắt nhận đơn') }} @endif @if ($item->is_enable_split_cashout_order) {{ __('Tắt') }} @else {{ __('Bật') }} @endif
@endsection @section('styles') @endsection @section('scripts') @endsection