@extends('layouts.app_rest') @section('content') {{-- body content start--------------------------------- --}}
@can('user.create') @endcan @can('user.update') @endcan @can('user.view') @endcan @can('user.delete') @endcan
@can('user.view')
Show rows
@foreach ($employees as $employee) @endforeach
Full Name Mobile Phone Email City Position Department Status
{{ $employee['first_name'] }} {{ $employee['last_name'] }} {{ $employee['mobile'] }} {{ $employee['phone'] }} {{ $employee['email'] }} {{ $employee['city'] }} {{ $employee['positionName'] }} {{ $employee['departmentName'] }} @if ($employee['status'] === 'Active') {{ $employee['status'] }} @else {{ $employee['status'] }} @endif
{{ $employees->links('vendor.pagination.tailwind') }}
@endcan
@endsection @section('javascript') @endsection