@extends('dashboard.base') @section('content')

Clients


@foreach($clients as $client) @endforeach
# Name Email Company Created at
{{ $loop->iteration }} {{ $client->fname.' '.$client->lname }} {{ $client->email1 }} {{ $client->company_name }} {{ $client->created_at }} @if (!is_null($client->user->is_approved)) @else Approve Decline @endif Edit
@method('DELETE') @csrf
@endsection @section('javascript') @endsection