@extends('includes.layouts.admin') @section('page-title') View Company @endsection @section('content')

View Company

Company Formation

Particulars

  • Company Name : {{ $review->companie_name ?? '' }}
  • Company Type : {{ $review->companie_type ?? '' }}
  • Jurisdiction : {{ $review->jurisdiction->name ?? '' }}
  • SIC Codes : @if (isset($review) && $review->sicCodes->count() > 0) {{ implode(', ', $review->sicCodes->pluck('name')->toArray()) }} @else {{-- No data present --}} @endif
@if (!empty($review->forwarding_registered_office_address))

Registered Office

  • Address : 52 Danes Court, North End Road, Wembley, Middlesex, HAQ OAE, United Kingdom

Forwarding Address

  • Address : {{ $review->officeAddressWithForwAddress->house_number ?? '' }}, {{ $review->officeAddressWithForwAddress->street ?? '' }}, {{ $review->officeAddressWithForwAddress->locality ?? '' }}, {{ $review->officeAddressWithForwAddress->town ?? '' }}, {{ $review->officeAddressWithForwAddress->post_code ?? '' }},
@else {{--

Registered Office

  • Address : 9 Raglan Court, Empire Way, WEMBLEY, HA9 0RE, SCOTLAND
--}}

Registered Office

  • Address : {{ $review->officeAddressWithoutForwAddress->house_number ?? '' }}, {{ $review->officeAddressWithoutForwAddress->street ?? '' }}, {{ $review->officeAddressWithoutForwAddress->locality ?? '' }}, {{ $review->officeAddressWithoutForwAddress->town ?? '' }}, {{ $review->officeAddressWithoutForwAddress->post_code ?? '' }}
@endif
@if (!empty($review->forwarding_business_office_address))

Buisness Address

  • Address : 52 Danes Court, North End Road, Wembley, Middlesex, HAQ OAE, United Kingdom

Forwarding Address

  • Address : {{ $review->businessAddressWithForwAddress->house_number ?? '' }}, {{ $review->businessAddressWithForwAddress->street ?? '' }}, {{ $review->businessAddressWithForwAddress->locality ?? '' }}, {{ $review->businessAddressWithForwAddress->town ?? '' }}, {{ $review->businessAddressWithForwAddress->post_code ?? '' }},
@else {{--

Registered Office

  • Address : 9 Raglan Court, Empire Way, WEMBLEY, HA9 0RE, SCOTLAND
--}}

Buisness Address

@if(isset($review) && $review->business_address)
  • Address : {{ $review->businessAddressWithoutForwAddress->house_number ?? '' }}, {{ $review->businessAddressWithoutForwAddress->street ?? '' }}, {{ $review->businessAddressWithoutForwAddress->locality ?? '' }}, {{ $review->businessAddressWithoutForwAddress->town ?? '' }}, {{ $review->businessAddressWithoutForwAddress->post_code ?? '' }}
@endif @endif

Appointments

@foreach ($appointmentsList as $val)
  • Name : @php $officerDetails = officer_details_for_appointments_list(isset($val['person_officer_id']) ? $val['person_officer_id']:''); $fullName = $officerDetails['first_name'] . ' ' . $officerDetails['last_name']; echo $fullName; @endphp
  • @php $positionString = $val['position']; $positionArray = explode(', ', $val['position']); @endphp
  • Roles : {{ in_array('Director', $positionArray) ? 'Director,' : '' }} {{ in_array('Shareholder', $positionArray) ? 'Shareholder,' : '' }} {{ in_array('Secretary', $positionArray) ? 'Secretary,' : '' }} {{ in_array('PSC', $positionArray) ? 'PSC' : '' }}
  • Holdings : @if($val['sh_quantity']) {{$val['sh_quantity']}} x ORDINARY at {{$val['sh_pps']}} {{$val['sh_currency']}} @endif
  • DOB : @php $officerDetails = officer_details_for_appointments_list(isset($val['person_officer_id']) ? $val['person_officer_id']:''); $dob = $officerDetails['dob_day']; echo $dob; @endphp
  • Occupation : @php $officerDetails = officer_details_for_appointments_list(isset($val['person_officer_id']) ? $val['person_officer_id']:''); $occupation = $officerDetails['occupation']; echo $occupation; @endphp
  • Nationality : @php $officerDetails = officer_details_for_appointments_list(isset($val['person_officer_id']) ? $val['person_officer_id']:''); $nationality = $officerDetails['nationality']; $nationality_name = \App\Models\Country::where('id',$nationality)->pluck('name')->first(); echo $nationality_name; @endphp
  • Residential Address : @php $officerDetails = officer_details_for_appointments_list(isset($val['person_officer_id']) ? $val['person_officer_id']:''); $add_id = $officerDetails['add_id']; $address = \App\Models\Address::where('id',$add_id)->first(); @endphp {{$address->house_number ?? ''}}, {{$address->street ?? ''}}, {{$address->locality ?? ''}}, {{$address->town ?? ''}}, {{$address->country ?? ''}}, {{$address->post_code ?? ''}}
  • Service Address : @if (isset($val['own_address_id'])) @php $service_add = \App\Models\Address::where('id',$val['own_address_id'])->first(); // dd($service_add); @endphp {{$service_add->house_number ?? ''}}, {{$service_add->street ?? ''}}, {{$service_add->locality ?? ''}}, {{$service_add->town ?? ''}}, {{$service_add->country ?? ''}}, {{$service_add->post_code ?? ''}} @else @php $service_add = \App\Models\Address::where('id',$val['forwarding_address_id'])->first(); // dd($service_add); @endphp {{$service_add->house_number ?? ''}}, {{$service_add->street ?? ''}}, {{$service_add->locality ?? ''}}, {{$service_add->town ?? ''}}, {{$service_add->country ?? ''}}, {{$service_add->post_code ?? ''}} @endif
  • @if (in_array('PSC', $positionArray))
  • Name Of Control : {{$val['noc_vr']}}
  • @endif
@endforeach

Documents

  • Memorandum and Articles : {{ $review && $review->legal_document == 'generic_article' ? 'Generic Limited by Share Articles' : 'Byspoke article of association' }}

Business Account

{{ $review->businessBanking->businessBanking->title ?? 'No Merchant Account Selected' }}

Accounting Software

{{ $review->businessBanking->accountingSoftware->accounting_software_name ?? 'No Accounting Software Product Selected' }}

Insurance

No Insurance Product Selected

Memberships

No Membership Product Selected

   Back   
@endsection @section('scripts') @endsection