@include('common.header')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • Oohps! {{ $error }}
  • @endforeach
@endif @if (session('message'))
Well done!{{ session('message') }}
@endif
View Client
@if (!empty($client))

{{ $client->name }}

{{ $r->personContact->first_name }} @if ($client->company_type == 'Sole Proprietor') @elseif ($client->company_type == 'Partnership') @foreach ($contpersonPtner as $ptner) {{ $ptner->contactPersonPtr->first_name ?? null }}
@endforeach @elseif ($client->company_type == 'Limited') @foreach ($contpersonLtd as $ltd) {{ $r->contactPersonltd->first_name ?? null }}
@endforeach @endif
@if ($client->status == 'Active')
Status: Active
@elseif ($client->status == 'Inactive')
Status: Inactive
@endif @if ($client->status == 'Active') @else @endif
@endif
Recent Activities
Service Name Start Date End Date Repeat Status
@if (!empty($client->CertIncorp)) @endif @if (!empty($client->CertExtr)) @endif @if (!empty($client->tinCert)) @endif @if (!empty($client->certVat)) @endif @if (!empty($client->CertofReg)) @endif @if (!empty($client->memart)) @endif @if (!empty($client->partnershipDeed)) @endif
File Name Action
Certificate of Incoporation View
Certificate of Extract View
Certificate of TIN View
Certificate of VAT View
Certificate of Regstration View
MEMART View
Partnership Deed View
@include('common.footer')