@extends('layouts.app') @section('title') {{ __('Quản lí IP') }} @endsection @section('partner') active @endsection @section('section.header')

{{ __('Quản lí IP') }}


@endsection @section('section.content')
@if (Session::has('success'))
{{ Session::get('success') }}
@endif @if (Session::has('error'))
{{ Session::get('error') }}
@endif
{{ __('Danh sách WhiteLists IP') }} (Đối tác: {{ $username->username }})
@csrf
@error('whitelist_ip') * {{ $message }} @enderror
@foreach ($whitelistIps as $whitelistIp) @endforeach
{{ __('IP Address') }} {{ __('status') }} {{ __('operation') }}
{{ $whitelistIp->ip_address }} @if ($whitelistIp->state) Hoạt động @else Đã chặn @endif
@endsection @section('styles') @endsection @section('scripts') @endsection