@extends('adminlte::page') @section('title', 'Clients') @section('content_header')

Clients

@endsection @include('partials.datatables') @section('content')
@if($type) @endif
Reset

All Clients

@foreach($clients as $c) @endforeach
ID Type Name Email Phone Actions
{{ $c->id }} {{ ucfirst($c->client_type) }} {{ $c->display_name }} {{ $c->email }} {{ $c->phone }} View Edit
@csrf @method('DELETE')
@endsection