@extends('web.master') @section('content')
@if(count(Cart::getContent()))
@else @endif @if(count(Cart::getContent()))

Totales del Carrito

@if(session('banderas') == "Chile")
  • Cantidad de Productos{{ count(Cart::getContent()) }}
  • Sub Total${{ number_format(Cart::getSubTotal(), 0, ',', '.') }}
  • Total${{ number_format(Cart::getTotal(), 0, ',', '.') }}
@else
  • Cantidad de Productos{{ count(Cart::getContent()) }}
  • Sub Total€{{ Cart::getSubTotal() }}
  • Total€{{ Cart::getTotal() }}
@endif
#
@csrf
@endif
@endsection