@extends("layouts.admin.app") @section("page-title") {{__("Dashboard")}} @endSection @section("page-nav-title")

{{__("Admins And Employee")}}

{{__("All Employees")}}

@endsection @section("content") @include("includes.dialog")
@csrf Export As Excel
@foreach($employees as $employee) @endforeach
#{{__("ID")}} {{__("Full Name")}} {{__("Username")}} {{__("Email")}} {{__("Email Verified")}} {{__("Role")}} {{__("Created at")}} {{__("Updated at")}} {{__("Control")}}
{{$employee->id}} {{$employee->full_name}} {{$employee->username}} {{$employee->email}} {{!empty($employee->email_verified_at) ? "Yes" : "No"}} {{$employee->role->name}} {{$employee->created_at->diffForHumans()}} {{$employee->updated_at->diffForHumans()}} id)}}" class="control-link edit">
@endsection @section("scripts") @endsection