@extends('layouts.pdf') @section('title') {{ $extra['module_name'] }} @endsection @section('content') {{--

Printing Date & Time: {{ $extra['current_date_time'] }}

--}}
@include('admin.partials.header', ['extra' => $extra]) @foreach($products as $product) @foreach ($product->tenants as $history) @endforeach @endforeach
{{__('lang.serial_no')}} {{__('lang.owner')}} {{__('lang.resident')}} {{__('lang.handover_date')}} {{__('lang.description')}}
{{ $loop->iteration }}. {{ $product->branch->name ?? '-' }} - {{ $product->product_unique_id ?? '-' }}
{{ $loop->iteration }} {{ $history->owner->name }} {{ $history->tenant->name }} {{ $transaction->date_format($history->hand_over_date) }} {{ $history->description ?? '-' }}
@stop