@extends ('layouts.in') @section ('body')
@foreach ($list as $row) @php ($link = route('user.update', $row->id)) @endforeach
{{ __('user-index.name') }} {{ __('user-index.email') }} {{ __('user-index.created_at') }} {{ __('user-index.updated_at') }} {{ __('user-index.manager') }} {{ __('user-index.admin') }} {{ __('user-index.enabled') }} {{ __('user-index.actions') }}
{{ $row->name }} {{ $row->email }} @dateWithUserTimezone($row->created_at) @dateWithUserTimezone($row->updated_at) @status($row->manager) @status($row->admin) @status($row->enabled) @icon('key', 'w-4 h-4')
@stop