@extends('backend.layouts.app') @section('title', app_name() . ' | ' . __('labels.backend.access.blogs.management')) @section('breadcrumb-links') @include('backend.blogs.includes.breadcrumb-links') @endsection @section('content')

Client Management Add New Client

@if(count($clients)) @foreach($clients as $client) @endforeach @else @endif
Client ID Client Name Completed By Intake Date File Code Action
{{ $client->id }} {{ $client->client_first_name }} {{ $client->client_last_name }} {{ $client->first_name }} {{ $client->last_name }} {{ $client->intake_date }} {{ ucfirst($client->file_code) }}
No Clients Found
@endsection @section('pagescript') @stop