@extends ('layouts.in') @section ('body')
@foreach ($list as $row) @php ($link = route('ip-lock.update', $row->id)) @endforeach
{{ __('ip-lock-index.ip') }} {{ __('ip-lock-index.created_at') }} {{ __('ip-lock-index.end_at') }} {{ __('ip-lock-index.time') }} {{ __('ip-lock-index.actions') }}
{{ $row->ip }} @dateWithUserTimezone($row->created_at) @dateWithUserTimezone($row->end_at) {{ $row->time() }} @if ($row->finished() === false) @icon('unlock', 'w-4 h-4') @endif
@stop