@extends('layouts.portal.app') @section('content')
@if(Session::has('errorResponse'))
@endif
@if(Auth::user()->hasRole('Administrator') || Auth::user()->can('Administer Company') || Auth::user()->can('IP-Pools.create')) Synchronize Add Pool @endif
@if(Auth::user()->hasRole('Administrator') || Auth::user()->hasRole('Client')) @endif @foreach($companyIpPools as $companyIpPoll) @if(Auth::user()->hasRole('Administrator') || Auth::user()->hasRole('Client')) @endif @endforeach
Ref & Status Router & Name IP Range Actions
{{ $companyIpPoll->ref_no }}
@if($companyIpPoll->status == 1) active @else inactive @endif
{{ $companyIpPoll->companyRouter? $companyIpPoll->companyRouter->name: '' }}
{{ $companyIpPoll->name }}
Start IP: {{ $companyIpPoll->ip_from_range }}
End IP: {{ $companyIpPoll->ip_to_range }}
@if(Auth::user()->hasRole('Administrator') || Auth::user()->can('Administer Company') || Auth::user()->can('IP-Pools.edit')) @endif @if(Auth::user()->hasRole('Administrator') || Auth::user()->can('Administer Company') || Auth::user()->can('IP-Pools.delete')) @endif
{{ $companyIpPools->render() }}
@include('portal.companies.ip-pools.create') @include('portal.companies.ip-pools.edit') @include('portal.companies.ip-pools.synchronize') @include('portal.companies.ip-pools.activate') @include('portal.companies.ip-pools.deactivate') @include('portal.companies.ip-pools.delete') @endsection