@extends('layout.app') @section('content')

Cart

@if(!empty($items) && count($items) > 0)
{{-- @dd($item->options)--}}

Products Cart

@foreach($items as $item)
{{--
--}} {{-- --}} {{--
--}}

{{ $item->name }} SKU#: {{ $item->options['sku'] }}

Price: ${{ $item->price }}

@if(!empty($item->options['description']))

Descriptions: {{ $item->options['description'] }}

@endif {{--

{{ $item->options['description'] }}

--}}
{{--Media--}} @if(!empty($item->options['media']))

Media: {{ $item->options['media'] }}

@endif {{--Treatment--}} @if(!empty($item->options['treatment']))

Treatment: {{ $item->options['treatment'] }}

@endif {{--Length--}} @if(!empty($item->options['length']))

Length: {{ $item->options['length'] }}

@endif {{--Width--}} @if(!empty($item->options['width']))

Width: {{ $item->options['width'] }}

@endif {{--Size--}} @if(!empty($item->options['size']))

Size: {{ $item->options['size'] }}

@endif {{--Color Group--}} @if(!empty($item->options['color_group']))

Color Group: {{ $item->options['color_group'] }}

@endif {{--Frame Color--}} @if(!empty($item->options['frame_color']))

Frame Color: {{ $item->options['frame_color'] }}

@endif {{--Frame DropDown Color--}} @if(!empty($item->options['frame_dropdown']))

Frame Color: {{ $item->options['frame_dropdown'] }}

@endif {{--Mat Floated Dropdown Background Color--}} @if(!empty($item->options['floated_dropdown']))

Mat Background Color: {{ $item->options['floated_dropdown'] }}

@endif {{--Mat Background Color--}} @if(!empty($item->options['mat_option_color']))

Mat Background Color: {{ $item->options['mat_option_color'] }}

@endif {{--DropDown Top Color--}} @if(!empty($item->options['dropdown_top_color']))

Mat Top Color: {{ $item->options['dropdown_top_color'] }}

@endif {{--DropDown Bottom Color--}} @if(!empty($item->options['dropdown_bottom_color']))

Mat Bottom Color: {{ $item->options['dropdown_bottom_color'] }}

@endif {{--DropDown Single Top Color--}} @if(!empty($item->options['single_color_dropdown']))

Top Mat Color: {{ $item->options['single_color_dropdown'] }}

@endif {{--Mat Single Color--}} @if(!empty($item->options['mat_single_color']))

Top Mat Color: {{ $item->options['mat_single_color'] }}

@endif {{--Mat Top Color--}} @if(!empty($item->options['mat_option_top_color']))

Mat Top Color: {{ $item->options['mat_option_top_color'] }}

@endif {{--Mat Bottom Color--}} @if(!empty($item->options['mat_option_bottom_color']))

Mat Bottom Color: {{ $item->options['mat_option_bottom_color'] }}

@endif {{--Mat Fillet Color--}} @if(!empty($item->options['fillet_color']))

Fillet Color: {{ $item->options['fillet_color'] }}

@endif {{--Color--}} @if(!empty($item->options['color']))

Color: {{ $item->options['color'] }}

@endif

quantity

{{-- ---}} {{-- --}} id }} type="number" class="input-text qty text input-quantity " step="1" min="1" name="quantity[]" value="{{ $item->qty }}" title="Qty" size="4"> {{-- +--}}

Total Price: ${{ $item->price * $item->qty }}

{{-- --}}
@csrf
@endforeach {{-- @dd(Cart::subTotal(), Cart::content(), Cart::total(), (Cart::total() - $item->taxRate))--}}

${{ Cart::subTotal() }} SUBTOTAL

Shipping & taxes calculated at checkout. We accept Visa, MasterCard, American Express,
and Discover cards.

CHECK OUT
@else

Empty Cart

continue shopping
@endif @endsection @push('script') @endpush