@extends('layouts.app') @section('content')
{{ $contrato->descripcion }}
| Descripcion | Cantidad | Precio Unitario | Descuento | Subtotal |
|---|---|---|---|---|
| {{ $concepto->descripcion }} | {{ $concepto->cantidad }} | ${{ number_format($concepto->precio_unitario, 2) }} | {{ $concepto->descuento }}% | ${{ number_format($concepto->subtotal, 2) }} |
| Total: | ${{ number_format($contrato->monto_total, 2) }} | |||
| Folio | Total | Estatus | Fecha |
|---|---|---|---|
| {{ $factura->folio }} | ${{ number_format($factura->total, 2) }} | @if($factura->estatus_sat == 'active') Activa @else Cancelada @endif | {{ $factura->created_at->format('d/m/Y') }} |
| No hay facturas vinculadas | |||
{{ $contrato->notas }}