@extends('admin.layouts.app') @push('styles_top') @endpush @section('content')

{{ $pageTitle }}

@can("admin_user_ip_restriction_create") @endcan
@foreach($restrictions as $restriction) @endforeach
{{ trans('admin/main.type') }} {{ trans('update.value') }} {{ trans('product.reason') }} {{ trans('update.blocked_date') }} {{ trans('admin/main.actions') }}
{{ trans("update.{$restriction->type}") }} @if($restriction->type == "country") {{ getCountriesLists($restriction->value) }} @else {{ $restriction->value }} @endif {{ $restriction->reason }} {{ dateTimeFormat($restriction->created_at, 'j M Y H:i') }} @can("admin_user_ip_restriction_create") id}/edit") }}" class="js-edit-restriction btn-transparent text-primary" data-toggle="tooltip" data-placement="top" title="{{ trans('admin/main.edit') }}"> @endcan @can('admin_user_ip_restriction_delete') @include('admin.includes.delete_button',[ 'url' => getAdminPanelUrl("/users/ip-restriction/{$restriction->id}/delete"), ]) @endcan
{{trans('admin/main.hints')}}
{{trans('update.restrictions_hint_title_1')}}
{{trans('update.restrictions_hint_description_1')}}
{{trans('update.restrictions_hint_title_2')}}
{{trans('update.restrictions_hint_description_2')}}
{{trans('update.restrictions_hint_title_3')}}
{{trans('update.restrictions_hint_description_3')}}
@endsection @push('scripts_bottom') @endpush