@extends('layouts.public')
@section("content")
@include('includes.corano-breadcrumb', [
'crumbs' => [
['label' => __('public.menu.shop'), 'url' => __url('/shop')],
['label' => __('public.checkout')],
],
])
{{ __('public.checkout') }}
{{ __('public.billing_information') }}
@include('pages.checkout.details', [
'cart' => $cart,
'promo' => $promo ?? null,
'discount' => $discount ?? 0,
'discountedTotal' => $discountedTotal ?? $subtotal,
'subtotal' => $subtotal,
])
@endsection