@extends('layouts.appdf') @section('content')
@if(!is_null($addresses)) {!! $addresses !!} @endif @if(!is_null($fromPerson)) {!! $fromPerson !!} @else {!! $PersonData !!} @endif

Tu carrito {{ count($products) }}

    @foreach($products as $product)
  • {{ $product->name }}
    {{ $product->short_detail }}
    @convert($product->price)
  • @endforeach
  • {{ __('iva') }}
    @convert($percentageIva*100)%
    @convert(($products->sum('price'))*$percentageIva)
  • {{--
  • Product name
    Brief description
    $12
  • Second product
    Brief description
    $8
  • Third item
    Brief description
    $5
  • Promo code
    EXAMPLECODE
    -$5
  • --}}
  • Total (USD) @convert((($products->sum('price'))*$percentageIva)+($products->sum('price')))
{{--
--}} {{--{{ __('checkout') }}--}} @if(count($errors) > 0) @foreach($errors->all() as $error)
{{ $error }}
@endforeach @endif @if(is_null($fromPerson)) {!! $datafastView !!} @endif
@endsection