@extends('frontend.layouts.master') @section('content')

Vista del carrito Biker

@foreach (Cart::content() as $product) @endforeach @if (Cart::content()->count() === 0) @endif
Imagen Detalle Precio Cantidad total clear all
product {{ $product->name }} {{ @$product->options->product_size['name'] }} {{ @$product->options->product_size['price'] ? '(' . currencyPosition(@$product->options->product_size['price']) . ')' : '' }} @foreach ($product->options->product_options as $option)

{{ $option['name'] }} ({{ currencyPosition($option['price']) }})

@endforeach
{{ currencyPosition($product->price) }}
{{ currencyPosition(productTotal($product->rowId)) }}
Cart is empty!
@endsection @push('scripts') @endpush