@extends('layouts.admin.app') @section('title') Employees @stop @section('main')
@foreach($users as $user) @endforeach
id Email Name Role Notification Created at
{{$user->id}} {{$user->email}} {{$user->first_name}} {{$user->last_name}} {{$user->role->name}} {{$user->task_notification ? 'Yes' : 'No'}} {{$user->created_at->diffForHumans()}}
@stop @section('footer') @stop