{{-- TODO: redirect from controller --}}
@if (core()->isCustomTheme())
@if(in_array(core()->getCurrentChannel()->theme, ['muscle', 'pastry-bakery']))
@include('shop::home.themes.muscle.body.cart.shopping-cart')
@elseif (in_array(core()->getCurrentChannel()->theme, ['green-land', 'pharmacies', 'medical-equipment', 'honey']))
@include('shop::home.themes.green-land.body.cart.shopping-cart')
@else
@include('shop::home.themes.sobkaha.body.cart.shopping-cart')
@endif
@else
@inject ('reviewHelper', 'Webkul\Product\Helpers\Review')
@extends('shop::layouts.master')
@push('pageTitle')
{{ __('shop::app.checkout.cart.title') }}
@endpush
@section('content-wrapper')
@endsection
@push('scripts')
@include('shop::checkout.cart.coupon')
@endpush
@endif