@extends('layout.layout') @section('title') Dashboard @endsection @section('css') @endsection @section('content') @component('components.breadcrumb') @slot('title') Client Information Report @endslot @slot('li_1') @endslot @endcomponent
Branch: {{ $branch }}
Active Clients: {{ $status }}
@if (count($clientArray) > 0) @foreach ($clientArray as $client) @endforeach @endif
Customer No Surname Firstnames Title ID Number Address Line1 Address Line2 Address Line3 Code Home Telephone Mobile No Email address
{{ $client->customer }}
{{ $client->surname }}
{{ $client->firstnames }}
{{ $client->title }}
{{ $client->id_number }}
{{ $client->address1 }}
{{ $client->address2 }}
{{ $client->address3 }}
{{ $client->code }}
{{ $client->hometel }}
{{ $client->cell2 }}
{{ $client->email }}
@endsection @push('plugin-scripts') @section('script') @endsection @endpush