PATH:
home
/
lab2454c
/
westernclear.net
/
resources
/
views
/
admin
@extends('admin.layout.adminMasterLayout') @section('title', 'Dashboard') @section('content') <div class="content-wrapper"> <div class="row mb-3"> <div class="col-sm-12 mb-4 mb-xl-0"> <h4 class="font-weight-bold text-dark"> Welcome, <b>{{ auth()->user()->name ?? $setting->site_name }}</b> </h4> <p class="font-weight-normal mb-2 text-muted">{{ date('j F, Y, g:i a') }}</p> </div> </div> <div class="row"> <div class="col-xl-12 grid-margin-lg-0 grid-margin stretch-card"> <div class="card"> <div class="card-body"> <div style="text-align: end;"> <a href="{{ route('userList') }}" class="btn btn-success">Show All Users</a> </div> <h4 class="card-title">Recent Registered Users</h4> <div class="table-responsive mt-3"> <table class="table table-header-bg"> <thead> <tr> <th>Name</th> <th>Email</th> <th>DOB</th> </tr> </thead> <tbody> @forelse($recentUsers as $recentUser) <tr> <td> {{ $recentUser->fullname ?? '--' }} </td> <td> {{ !empty($recentUser->email) ? $recentUser->email : '--' }} </td> <td> {{ !empty($recentUser->dob) ? date('j F Y', strtotime($recentUser->dob)) : '--' }} </td> </tr> @empty <td colspan="5">No Recent Users Listed</td> @endforelse </tbody> </table> </div> </div> </div> </div> </div> </div> @endsection
[+]
manageUser
[+]
..
[+]
invitationCode
[+]
insights
[+]
education
[+]
siteSetting
[+]
homepageManager
[+]
common
[+]
about
[+]
adminUser
[+]
auth
[+]
banner
[-] dashboard.blade.php
[edit]
[+]
layout
[+]
forms
[+]
pages
[-] menu.blade.php
[edit]
[+]
faq
[+]
contacts
[+]
socialLink
[+]
gallery