User Data
Create User| # | Name | Role | Created At | # | |
|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $user->name }} | {{ $user->email }} | {{ ucwords($user->roles()->first()->name) }} | {{ $user->created_at->format('d-m-Y H:i:s') }} |
|
@extends('layouts.master') @section('title', 'User Datas') @section('styles') @endsection @section('content')
| # | Name | Role | Created At | # | |
|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $user->name }} | {{ $user->email }} | {{ ucwords($user->roles()->first()->name) }} | {{ $user->created_at->format('d-m-Y H:i:s') }} |
|