@extends('layouts.master', ['title' => 'My Team']) @section('contents')

My Team User List ( You Are {{auth()->user()->role->role_name}} Head )

@forelse($employees as $employee) @empty @endforelse
Name Email / Contact Department Role Created
{{$employee->emp_name}} {{$employee->emp_email_first."/".$employee->emp_phone_first}} {{$employee->department}} {{$employee->user_type}} {{date('d-M-Y', strtotime($employee->adding_date))}}
No Record Found
{{$employees->links()}}
@endsection