Files
productalert/resources/views/admin/users/index.blade.php
2023-07-25 01:06:06 +08:00

51 lines
1.7 KiB
PHP

@extends('layouts.admin.app')
@section('content')
<div class="container-xl">
<!-- Page title -->
<div class="page-header d-print-none">
<h2 class="page-title">
{{ __('Users') }}
</h2>
</div>
</div>
<div class="page-body">
<div class="container-xl">
<div class="alert alert-info">
<div class="alert-title">Sample table page</div>
</div>
<div class="card">
<div class="table-responsive">
<table class="table" id="dataTable" width="100%" cellspacing="0">
<thead>
<tr>
<th>{{ __('Name') }}</th>
<th>{{ __('Email Address') }}</th>
<th>{{ __('Created at') }}</th>
<th>{{ __('Updated in') }}</th>
</tr>
</thead>
<tbody>
@foreach($users as $user)
<tr>
<td>{{ $user->name }}</td>
<td>{{ $user->email }}</td>
<td>{{ $user->created_at }}</td>
<td>{{ $user->updated_at->diffForhumans() }}</td>
</tr>
@endforeach
</tbody>
</table>
</div>
@if( $users->hasPages() )
<div class="card-footer pb-0">
{{ $users->links() }}
</div>
@endif
</div>
</div>
</div>
@endsection