@extends('frontend.saka-cart.layouts.app') @section('content')

{{ __('SHOPPING CART') }}

@foreach(Cart::content() as $row) @endforeach
{{ Str::limit($row->name,70) }} @foreach ($row->options->attribute as $attribute)

{{ $attribute->attribute->name }} : {{ $attribute->variation->name }}

@endforeach @foreach ($row->options->options as $op) {{ $op->name }}, @endforeach
{{ amount_format($row->price) }} x {{ $row->qty }} {{ amount_format($row->price*$row->qty) }}
@csrf

{{ __('Have a coupon ?') }}

{{ __('Price Total') }} {{ amount_format(Cart::priceTotal()) }}
{{ __('Subtotal') }} {{ amount_format(Cart::subtotal()) }}
{{ __('Tax') }} {{ amount_format(Cart::tax()) }}
{{ __('Discount') }} - {{ amount_format(Cart::discount()) }}
{{ __('Grand Total') }} {{ amount_format(Cart::total()) }}
@endsection @push('js') @endpush