@extends('admin.layouts.app') @section('title', 'Workers') @section('content')

Workers

All System Workers
{{--

Add lightweight datatables to your project with using the Simple DataTables library. Just add .datatable class name to any table you wish to conver to a datatable. Check for more examples.

--}}
@forelse($workers as $worker) @empty @endforelse
Name Email Phone Number Status Action
. {{ $worker->name }} {{ $worker->email }} {{ $worker->phone_number }} View @if($worker->status === 'active') Suspend @else Activate @endif
No Worker Yet. Please ADD A WORKER
@endsection