@if (Session::has('success'))
{{ Session::get('success') }}
@endif
@if (Session::has('error'))
{{ Session::get('error') }}
@endif
| {{ __('Tài khoản') }} |
{{ __('Trạng thái nhận đơn') }} |
{{ __('Thao tác') }} |
@foreach ($supportUsers as $item)
| {{ $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
|
@endforeach
@endsection
@section('styles')