@extends ('layouts.in') @section ('body')
@foreach ($locks as $each) @php ($link = $each->user ? route('user.update', $each->id) : null) @endforeach
{{ __('user-ip-lock.ip') }} {{ __('user-ip-lock.created_at') }} {{ __('user-ip-lock.end_at') }} {{ __('user-ip-lock.time') }} {{ __('user-ip-lock.actions') }}
{{ $each->ip }} @dateWithTimezone($each->created_at) @dateWithTimezone($each->end_at) {{ $each->time() }} @if ($each->finished() === false) @icon('unlock', 'w-4 h-4') @endif
@stop