@extends('layouts.app') @section('title', 'Licence Details') @section('pages')
@include('layouts.partials.nav-menu')
@if (in_array('license-details-create', $authRolePermissions)) Add New @endif
Customer Details
{{-- --}}

Customer Name {!! $customer->bill_to->code ?? '' !!} - {!! $customer->bill_to->name ?? '' !!}
Phone Number {!! $customer->bill_to->account_contact->phone_no ?? '' !!}
Email {!! $customer->bill_to->account_contact->email ?? '' !!}
Sex {!! $customer->bill_to->gender ?? '' !!}
{{-- @if(isset($sale_invoice->getDoctor)) --}}
Additional Details
{{-- --}}

{{-- --}}
Address {!! $customer->bill_to->account_contact->address ?? '' !!}
City Name {!! $customer->bill_to->customer_account_addresses->city->name ?? '' !!}
State Name {!! $customer->bill_to->customer_account_addresses->state->name ?? '' !!}
Country Name {!! $customer->bill_to->customer_account_addresses->country->name ?? '' !!}
Address {!! $customer->bill_to->account_contact->address ?? '' !!}
{{-- @endif --}}
@include('license-details.table')
@endsection