@extends('layouts.backend') @section('styles') @endsection @section('page-header')

Users

Add User
@endsection @section('content')
@foreach ($users as $user) @endforeach
Name Username Email Created Date Action

user {{$user->name}}

{{$user->username}} {{$user->email}} {{date_format(date_create($user->created_at),'d M, Y')}}
@endsection @section('scripts') @endsection