@extends('admin.layouts.app') @section('content')
Sample table page
@foreach ($users as $user) @endforeach
{{ __('Name') }} {{ __('Email Address') }} {{ __('Created at') }} {{ __('Updated in') }}
{{ $user->name }} {{ $user->email }} {{ $user->created_at }} {{ $user->updated_at->diffForhumans() }}
@if ($users->hasPages()) @endif
@endsection