@extends('backend.master') @section('title') {{ @$title }} @endsection @php $subtotal = 0; $total_discount = 0; @endphp @section('content') @if($errors->any())
@endif
@csrf

{{ _trans('landlord.Booking List') }}

{{ _trans('landlord.Booking More') }}
@forelse($carts as $key => $property) @php $subtotal += $property['price']; $total_discount += $property['discount_amount']; @endphp @empty @endforelse
{{ _trans('landlord.Property') }} {{ _trans('landlord.Price') }} {{ _trans('landlord.Discount') }} {{ _trans('landlord.Total Amount') }} {{ _trans('landlord.Action') }}
{{ @$property['property'] }} {{ priceFormat($property['price']) }} {{ priceFormat($property['discount_amount']) }} {{ priceFormat($property['total_amount']) }} {{ _trans('landlord.Remove') }}

{{ _trans('landlord.Sub Total') }} : {{ priceFormat($subtotal) }}
{{ _trans('landlord.Total Discount') }} : {{ priceFormat($total_discount) }}
{{ _trans('landlord.Total Amount') }} : {{ priceFormat($subtotal - $total_discount) }}
@foreach($tenants as $tenant) @endforeach



@if(count($carts) > 0) @endif
@endsection