@php $curency_symble=$transaction->get_currency_code(); $show_official = $type =='official'; $show_un_official = $type =='unofficial'; $is_combine = $type =='combine'; @endphp @extends('layouts.pdf') @section('title') {{ $extra['module_name'] }} @endsection @section('content')
@include('admin.partials.header', ['extra' => $extra]) @if($show_official || $is_combine) @endif @if($show_un_official || $is_combine) @endif @if(count($product->location) > 0) @endif @foreach ($product->location as $location) @if($loop->iteration % 2 == 0) @endif @endforeach
PROPERTY DETAILS OF UNIT NO. : {{ $product->product_unique_id }}
Project : {{ $product->branch->name ?? "-" }} Property Type : {{ $product->type->name ?? "-" }}
Floor : {{ $product->floor->name ?? "-" }} Layout Type : {{ $product->layoutType->name ?? "-" }}
Category : {{ $product->category->name ?? "-" }} Block : {{ $product->block->name ?? "-" }}
Size : {{ $product->flat_size ." - ". $product->size_in ?? "-" }}
AMOUNT DETAILS
Cost Rate Per Size : {{ $transaction->convert_money_format($product->cost_per_size) ?? "-" }} Cost {{$transaction->systemSettingCurrency()}} : {{ $transaction->convert_money_format($product->cost_per_size * $product->flat_size) ?? "-"}}
@if($is_combine)Official @endif Sale Rate Per Size : {{ $transaction->convert_money_format($product->rate_per_size) ?? "-" }} @if($is_combine)Official @endif Sale {{$transaction->systemSettingCurrency()}} : {{ $transaction->convert_money_format($product->rate_per_size * $product->flat_size) ?? "-"}}
@if($is_combine)Un Official @endif Sale Rate Per Size : {{ $transaction->convert_money_format($product->rate_per_size_unofficial) ?? "-" }} @if($is_combine)Un Official @endif Sale {{$transaction->systemSettingCurrency()}} : {{ $transaction->convert_money_format($product->rate_per_size_unofficial * $product->flat_size) ?? "-"}}
LOCATION CHARGES
{{$location->property_location->name}} : {{ $transaction->convert_money_format($location->price) ?? "-" }}
@endsection