@extends('layouts.app') @section('css') @endsection @section('content')

Datos de la empresa


Nombre:
Dickiss BarberShop

Dirección:
31 Oriente #824, Col. Anzures

Correo electrónico:
info@dickissbarbershop.com

Teléfono:
22 23 70 17 98

Datos cliente


Nombre:
{!! $cliente->nombre !!} {!! $cliente->a_paterno !!} {!! $cliente->a_materno !!}

Teléfono:
{!! $cliente->telefono !!}

Correo electrónico:
{!! $cliente->correo_electronico !!}

Ticket


Fecha:
{!! $venta->created_at->format('d/m/Y').'
'.$venta->created_at->format('h:i a') !!}

Estatus:
{!! $venta->status !!}

# Orden:
{!! $venta->id !!}

@if($venta->puntos != null)

Puntos generados
{!! $venta->puntos->puntos_totales !!}

@endif @if(isset($puntos_vigentes))

Puntos disponibles
{!! $puntos_vigentes->puntos_totales !!}

@endif
@foreach($productos_vendidos as $producto_venta) @if($producto_venta->tipo == "venta") @elseif($producto_venta->tipo == "cortesia") @endif @endforeach @foreach($servicios_vendidos as $servicio_venta) @if($servicio_venta->services->check_promocion == 'si') @else @endif @endforeach
Descripción Cantidad Precio individual Subtotal
{!! $producto_venta->producto->nombre !!}
{!! $producto_venta->cantidad_productos !!}${!! $producto_venta->producto->precio !!} ${!! $producto_venta->producto->precio * $producto_venta->cantidad_productos !!}GRATIS 0
{!! $servicio_venta->services->nombre !!}

{!! $servicio_venta->services->descripcion !!}

{!! $servicio_venta->cantidad_servicios !!}${!! $servicio_venta->services->costo!!} ${!! $servicio_venta->services->costo_promocion!!} ${!! $servicio_venta->services->costo_promocion * $servicio_venta->cantidad_servicios !!}${!! $servicio_venta->services->costo!!} ${!! $servicio_venta->services->costo * $servicio_venta->cantidad_servicios !!}
{{-- @dd($cliente->reward) --}} @if($venta->puntos_utilizados == null)

Total : ${!! $total + $total_services !!}

@else

Puntos utilizados: ${{ $venta->puntos_utilizados }}

Total : ${!! ($total + $total_services) - $venta->puntos_utilizados !!}

@endif
{{--

Total :

${!! $total + $total_services !!}

--}}
Colaborador Cantidad Tipo
@if($venta->status != 'Pagado')

Formas de pago

@if($puntos_vigentes != null) @if($venta->puntos_utilizados == null) @endif @endif @endif

Impresión

{{-- Factura --}} Ticket
@endsection @section('scripts') @endsection