@extends('layouts.master') @section('title', 'Checkout') @section('content')

checkout


Resumo da encomenda

({{ Session::get('cart')['products']->count() }} artigo)


@foreach ( Session::get('cart')['products'] as $item )
Image

{{ $item->product['name'][$locale] }} | Qtd: {{ $item->quantity }}
REF. {{ $item->product['ref'] }}

@if ( $item->product->hasDiscount )

€ {{ $item->product->price }}   |   € {{ $item->product->hasDiscount->discount_product_price }}

@else

€ {{ $item->product->price }}

@endif
@endforeach

@include('pages.shop.includes.shop_info')
@endsection