{{ config('settings.company_name') }} | ||
{{ config('settings.address_1') }} |
{{ $heading }} |
Code | {{__('lang.name')}} | @if($action == 'Excel')Father Name | Email Address | @endifMailing Address | NIC | Phone No. | Property |
---|---|---|---|---|---|---|---|
{{ $item->id }} | {{ $item->name }} | @if($action == 'Excel'){{ $item->father_or_husband_name ??'-' }} | {{ $item->email ??'-' }} | @endif{{ $item->mailing_address ??'-' }} | {{ $item->nid }} | {{ !empty($item->phone) ? $item->phone : $item->overseas_phone ?? "-" }} |
@php
$count = 1;
@endphp
@if (!empty($item->sells))
@foreach ($item->sells as $sells)
{{ "Registration: " .$sells->registration_no ?? '-' }} @foreach ($sells->nominees as $nominees ) @if (!empty($nominees->name) && !empty($nominees->nic) && !empty($nominees->relation)) {{"NOMINEE"}} {{ $loop->iteration .") ". "Name: " . $nominees->name ?? ' - ' }}, {{ "NIC: " . $nominees->nic ?? ' - ' }}, {{ "Relation: " .$nominees->relation ?? ' - ' }} @endif @endforeach @if($action == 'Excel') @else @endif @endforeach @endif |