@extends('layouts/front') @section('title', __('store.basket.title')) @section('scripts') @endsection @section('content')
| {{ __('global.product') }} | {{ __('store.price') }} | {{ __('store.qty') }} | {{ __('store.total') }} |
|---|---|---|---|
|
@include("shared.icons.shopping-cart")
{{ __('store.basket.empty') }} {{ __('store.basket.continue') }} |
|||
|
@include('shared/icons/edit')
{{ $row->product->trans('name') }}
@if ($row->primary() != null)
{{ $row->primary() }}
@endif
@if (!empty($row->optionsFormattedName()))
@foreach ($row->optionsFormattedName(false) as $name)
{{ $name }}
@endforeach @endif |
{{ formatted_price($pricing->firstPayment(),$pricing->currency) }} | @if ($row->canChangeQuantity()) @else {{ $row->quantity }} @endif | {{ formatted_price($row->total(), $row->currency) }} |