@extends('mycompany/main') @php $companyDetail = $company_details ? $company_details[0] : []; $totalChangePending = $change_request_pending ? count($change_request_pending) : 0; @endphp @section('mycompany-content')
{{-- secondary --}}
@if (isset(session()->get('active_company')['logo']))
Image
@else
@endif
{{ session()->get('active_company')['roc_no'] }}
{{ session()->get('active_company')['group_company'] }}
@if (isset($company_profiles) && count($company_profiles) > 0)
Summary
{{ strtoupper('Opening Balance') }}
@foreach ($company_profiles as $cpf)
{{ $cpf->currency }}
{{ number_format($cpf->outstanding_amount, 2) }}
@endforeach
@endif
{{-- primary --}}
{{--
--}} {{-- --}}
  • Full Name: {{ $companyDetail['name'] }}
  • {{--
  • CRM Type: {{ $companyDetail['type'] }}
  • --}}
  • ROC No.: {{ $companyDetail['roc_no'] }}
  • Web Address: {{ $companyDetail['website'] }}
  • Individual: {{ $companyDetail['individual'] == 1 ? 'Yes' : 'No' }}
  • Master Company: {{ $companyDetail['master'] }}
  • PLC / Non-PLC: {{ $companyDetail['plc'] == 1 ? 'PLC' : 'Non-PLC' }}
  • Type of Business: {{ $companyDetail['company_type'] }}
  • Industries: {{ $companyDetail['industries'] }}
  • Region: {{ $companyDetail['region'] }}
  • {{--
  • Status: {{ $companyDetail['status'] }}
  • --}}
  • Incorporate Date: {{ strtotime($companyDetail['incorporate_date']) > 0 ? date('d-m-Y', strtotime($companyDetail['incorporate_date'])) : '' }}
  • {{--
  • Service Start / Appoint Date: {{ strtotime($companyDetail['appoint_date']) > 0 ? date('d-m-Y', strtotime($companyDetail['appoint_date'])) : '' }}
  • --}}
  • Year End: {{ $companyDetail['year_end_id'] > 0 ? $companyDetail['year_end'] : '' }}
  • {{--
  • Thank You Letter: {{ $companyDetail['ty_letter'] == 1 ? 'Yes' : 'No' }}
  • --}}
  • Business Entity: {{ $companyDetail['profile'] }}
  • Description: {{ $companyDetail['description'] }}
@endsection