@extends('frontend.layouts.master') @section('content')
{{--
5 ITEM(S) PRICE
Package 2 of 4

Shipped by OnestTech

@forelse($data['carts'] as $cart) @empty

{{ _trans('landlord.No property found') }}

@endforelse
{{ _trans('landlord.ITEM(S)') }} {{ _trans('landlord.Unit Price') }} {{ _trans('landlord.Duration') }} {{ _trans('landlord.Price') }}

{{ @$cart->property->name }}

{{ @$cart->property->category->name }}

{{ @$cart->property->bedroom }} {{ _trans('landlord.Bed') }} {{ @$cart->property->bathroom }} {{ _trans('landlord.bath') }} {{ @$cart->property->size }} {{ _trans('landlord.sqft') }}

৳{{ @$cart->property->rent_amount }}

৳{{ $cart->property->rent_amount }}

--}}
@csrf

{{ _trans('landlord.Billing Address') }}

@error('name') {{ $message }} @enderror
@error('phone') {{ $message }} @enderror
@error('email') {{ $message }} @enderror
@error('address') {{ $message }} @enderror
@error('country') {{ $message }} @enderror
@error('postal') {{ $message }} @enderror
@error('terms_and_condition') {{ $message }} @enderror
@if ($data['address']->count() > 0) @foreach ($data['address'] as $key => $address) @endforeach @else

No address found for this user.

@endif {{--
{{ _trans('landlord.Return to cart') }}
--}}

Payment

All transactions are secure and encrypted.
{{--
--}}

{{--

--}}
Return to shipping

{{ _trans('landlord.Order Summary') }}

@php $total = 0; @endphp @forelse($data['carts'] as $cart)

{{ _trans('landlord.Subtotal') }}

৳ {{ @$cart->durations * @$cart->property->rent_amount }}

{{ _trans('landlord.Shipping Charge') }}

Package Wise Shipping Charge

৳ {{ @$cart->property->location->upazila->charge }}

{{ _trans('landlord.Discount') }}

৳ {{ @$cart->property->discount_amount }}
{{ _trans('landlord.Sub Total') }} (Incl. VAT)
৳ {{ (@$cart->durations * @$cart->property->rent_amount) + @$cart->property->location->upazila->charge + @$cart->property->discount_amount }}
@php $total += (@$cart->durations * @$cart->property->rent_amount) + @$cart->property->location->upazila->charge + @$cart->property->discount_amount @endphp @empty

{{ _trans('landlord.No property found') }}

@endforelse
{{ _trans('landlord.Total') }} (Incl. VAT)
৳ {{ $total }}
@endsection @section('script') @endsection