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

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

--}}
@include('admin.partials.header', ['extra' => $extra]) @php $totalAmount = 0; $counter = 1; @endphp @foreach ($items as $item) @php $totalAmount += $item->estimated_cost; @endphp @endforeach
S. No. {{__('lang.name')}} Location {{__('lang.description')}} Building Height Land Area Launching Date Handover Date Estimated Cost Created By
{{ $counter++ }} {{ $item->name }} {{ $item->location }} {{ $item->description }} {{ $item->building_height }} {{ $item->land_area }} {{ ($item->launching_date)?date(config('settings.date_format'), strtotime($item->launching_date)):"-" }} {{ ($item->handover_date)?date(config('settings.date_format'), strtotime($item->handover_date)):"-" }} {{ $transaction->convert_money_format($item->estimated_cost) }} {{ $item->createdBy->name }}
Total {{ $transaction->convert_money_format($totalAmount) }}

@stop