@extends ('layouts.app') @section('title') {{ __('Trash') }} {{ __('List') }} {{ __('Users') }} @endsection @section('breadcrumbs') {{ __('Users') }} @endsection @section('content')
{{ __('Trash') }} {{ __('Users') }} {{ __('List') }} {{ __('List') }}
@if (count($users) > 0)
@foreach ($users as $row) @endforeach
# {{ __('labels.users.fields.name') }} {{ __('Updated at') }} {{ __('Created by') }} {{ __('Actions') }}
{{ $row->id }} {{ $row->name }} {{ $row->updated_at->isoFormat('llll') }} {{ $row->created_by }}  {{ __('labels.restore') }}
@else

@lang('No record found in trash!')

@endif
@endsection