@extends('layouts.pdf') @section('title') {{ $extra['module_name'] }} @endsection @section('content')
@include('admin.partials.header', ['extra' => $extra]) @foreach ($sells as $sell) @php $set_row_span = $sell->nominees->count() + 1; $schedule_route = route('schedule_manage' ,['sell_id' => $sell->id]); @endphp @foreach ($sell->nominees as $nominee) @if($nominee->count() > 0) @endif @endforeach @endforeach
{{__('lang.sno')}} {{__('lang.registration_no')}} {{__('lang.customer_name')}} {{__('lang.father_or_husband_name')}} {{__('lang.nic')}} {{__('lang.phone')}} {{__('lang.address')}} {{__('lang.city')}} {{__('lang.gender')}} {{__('lang.nominee_name')}} {{__('lang.nominee_father_name')}} {{__('lang.nominee_nic')}} {{__('lang.nominee_phone')}} {{__('lang.nominee_address')}} {{__('lang.nominee_relation')}}
{{ $loop->iteration }} {{ $sell->registration_no }} {{ $sell->customer->name ?? '-' }} {{ $sell->customer->father_or_husband_name ?? '-' }} {{ $sell->customer->nid ?? '-'}} {{ $sell->customer->phone ?? '-'}} {{ $sell->customer->mailing_address ?? '-'}} {{ $sell->customer->city->name ?? '-'}} {{ $sell->customer->gender ?? '-'}}
{{ $nominee->name }} {{ $nominee->so_do_wo }} {{ $nominee->nic }} {{ $nominee->phone}} {{ $nominee->address }} {{ $nominee->relation }}
@stop