@extends('layouts.app') @section('content')
@include('commons.notifications')
{{ __('Clients') }}
@if (session('status')) @endif @if($clients) @foreach($clients->content as $row) @endforeach @else @endif
# Name Email Phone Country Status Date Added Action
{{ $count }} {{ $row->name }} {{ $row->email }} {{ $row->phoneNumber }} {{ $row->country }} {{ $row->status }} {{ $row->createdAt }}
No records found
@endsection