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