@if (!empty($services) && $service->count())
@foreach ($services as $key => $service)
{{ $loop->iteration }} |
{{ $service->name }}
|
@if ($service->status === null)
Pending Verification
@elseif ($service->status === 0)
Inactive
@else
Active
@endif
|
|
@endforeach
@else
No matching records found |
@endif