@extends('Admin.layouts.app') @section('content')

Employee

@foreach($employeeList as $key=>$employee) @endforeach
No Name Username Phone Country Status Action
{{$key+1}} {{$employee->name}} {{$employee->username}} {{$employee->phone}} {{$employee->country}} @switch($employee->status) @case(1) Unblock @break @default Block @endswitch
@endsection