@extends('layouts.app') @section('envios')
{{ __('Transferencia') }}

{{ __('Resumen') }}


@foreach($data as $d) @endforeach
Descripción Cantidad Precio
{{ $d->descripcion }} {{ 'x ' . $d->cantidad }} {{ $d->valor }} {{ '- ' . $d->descuento }} {{ '- ' . $d->descuento_canje }}

Descripción Cantidad Total
{{ __('Cantidad total de envíos') }} {{ 'x ' . $cantidad }} {{ $transferencia->total }} {{ '- ' . $transferencia->descuento }} {{ '- ' . $transferencia->descuento_canje }}


@if (Auth::user()->credito == 0) @else @endif
Descripción Pagar
{{ __('Valor total por pagar vía transferencia') }}{{ __('Valor total por pagar vía crédito') }}{{ $transferencia->pagar }}
{{-- {{ csrf_field() }} --}}
@if ($cantidad)
@else @endif
@endsection