@extends('layouts.admin') @section('header','Users') @section('breadcrumbs')
  • Home
  • Users
  • @stop @section('content')
    @include('messages')
    @if(count($users))
    @foreach ($users as $user) @endforeach
    Name Updated At
    {{ $user->name }} {{ date('d-m-Y H:i:s',strtotime($user->updated_at)) }}
    @else

    Please create a new user by clicking HERE

    @endif
    @stop