@extends('theme::layouts.app') @section('content')
@if(Cart::count() > 0)

{{ content('cart','cart_title') }}

@php $ecom_settings=LpOption('ecommerce'); @endphp @foreach(Cart::content() as $cart) @endforeach
{{ __('Image') }} {{ __('Product') }} {{ __('Price') }} {{ __('Quantity') }} {{ __('Total') }}
{{ $cart->name }} {{ $cart->price }}
{{ $cart->total }}
Total Price {{ Cart::total() }}
@else

Cart Not Found

@endif

{{ content('cart_quote','cart_quote_title') }}

{{ content('cart_quote','cart_quote_description') }}

{{ content('cart_quote','cart_quote_button') }}
@php $basic_info=LpOption('system_basic_info'); @endphp @if(!empty($basic_info->gallary_input)) @php $gallery=explode(',', $basic_info->gallary_input); @endphp
@endif @endsection @push('js') @endpush