@extends('layouts.master2') @section('content')
@if(@$success == "true")
{{@$message}}
@endif
@foreach( Cart::content() as $article) {{ csrf_field() }} @endforeach
Produits Prix Quantité Modifier Total
{{ $article->price }} XOF
{{ $article->price * $article->qty }} XOF

Total

  • Total Panier {{ Cart::subtotal() }} XOF

Validation commande

{{ csrf_field() }}
@foreach( Cart::content() as $article) @endforeach
@endsection