@extends('layout.app') @section('page-title', $cartDto->title) @section('breadcrumb')
Home Shopping cart
@endsection @if(PROD_ENV === true) @section('tracking') @endsection @endif @section('content')
@if(empty($cartDto->order->contents))
Your cart is empty

You may check out all the available products and buy some in the shop

Return to shop
@else
@include('partials._cart_items', ['order' => $cartDto->order, 'is_readonly' => false])
@endif
@endsection @push('after-foot-js') @if($cartDto->admin_or_reseller) @else @endif @endpush