@extends('page') @section('content')

{{ $company->company_name }}'s Details

@if ($message = Session::get('success'))
{{ $message }}
@endif
Company logo

{{ $company->company_name }}

{{ $company->company_code }}

{{ ucfirst($company->company_type) }}

{{ $company->gst_number }}

Contact Information
{{ $company->telephone_code }} {{ $company->telephone }}
{{ $company->email }}
{{ $company->website }}
@if($company->building_name!='' && $company->building_name!=null) {{ $company->building_name }}, @endif @if($company->area!='' && $company->area!=null) {{ $company->area }}, @endif @if($company->landmark!='' && $company->landmark!=null) {{ $company->landmark }}, @endif @if($company->town!='' && $company->town!=null) {{ $company->town }}, @endif @if($state!='' && $state!=null) {{ $state->name }}, @endif @if($country!='' && $country!=null) {{ $country->name }}, @endif @if($company->pin!='' && $company->pin!=null) PIN - {{ $company->pin }} @endif
@if(count($contact_persons)>0)
Contact Persons
@php $x = 1 @endphp @foreach($contact_persons as $contact_person)
@if(count($contact_persons)>1)
Contact Person {{$x}}:
@endif
{{ $contact_person->name }}
@if($contact_person->designation!="") {{ $contact_person->designation }} @else - @endif
{{ $contact_person->email }}
{{ $contact_person->mob_code1 }} {{ $contact_person->mobile1 }} @if($contact_person->mobile2!=null) , {{ $contact_person->mob_code2 }} {{ $contact_person->mobile2 }} @endif
@php $x++ @endphp @endforeach @endif
@include('components.dashboard.vertical')
@endsection