@extends('layouts.new-layout') @section('title', 'Address') @section('content') @include('partials.parallaxSlider', ['title' => 'Delivery Address'])

Select a Delivery Address

@if(session('error')) @endif
@csrf @if($addresses->count())
Saved Address
@forelse($addresses as $address)
is_shipping_available ? 'data-shipping='.$address->shipping->price.' data-delivery='.$address->shipping->delivery_days : 'disabled' }}>
@empty

No Saved Address found.

@endforelse
@endif
Add Address +
Contact information
{{--
--}}
Shipping address

{{--
--}}
@if(!empty(Cart::session(cartSessionId())->getContent())) @foreach(Cart::session(cartSessionId())->getContent() as $item) @endforeach @endif

Subtotal

{{ Cart::session(cartSessionId())->getTotal() }}

@if($shipping || (session('location.pincode') && Shipping::where('status', 1)->where('pincode', session('location.pincode'))->exists()))

Shipping

Calculated on Next Page
@else

Service Fee / Shipping Cost

Calculated separately from order
Delivery Information

Contact Northern Leisure Rentals if outside of Prince George city limits for shipping details.

@endif @if($shipping && $shipping->delivery_days)

Delivery Days

2-5 Days
@endif

Total

{{ Cart::session(cartSessionId())->getTotal() }}

@endsection @if($addresses->count()) @foreach($addresses as $address) @endforeach @endif