@extends ('layouts.in') @section ('body')
@foreach ($list as $row) @php ($link = $row->user ? route('user.update', $row->user->id) : null) @endforeach
{{ __('user-session-index.created_at') }} {{ __('user-session-index.auth') }} {{ __('user-session-index.ip') }} {{ __('user-session-index.success') }}
@dateWithUserTimezone($row->created_at) @if ($link) {{ $row->auth }} @else {{ $row->auth }} @endif {{ $row->ip }} @status($row->success)
@stop