@extends('layouts.app') @section('content')
Estado | Cantidad |
---|---|
{{ $datum['name'] }} | {{ $datum['cantidad'] }} |
Fecha Notificación | Fecha Factura | N° Factura | Rut | Proveedor | Monto | Empresa Factoring | Estado | Acciones |
---|---|---|---|---|---|---|---|---|
{{ fechaFormato($factura->fecha_notificacion, 'd-m-Y H:i:s') }} | {{ $factura->fecha_documento }} | {{ $factura->n_documento }} | {{ $factura->rut }} | {{ $factura->proveedor }} | {{ $factura->monto }} | {{ $factura->empresa_factoring }} |
{{ $factura->estado }}
Etapa: {{ $factura->estado_etapa }}
|
Ver @if(currentUser()->tieneRoles('SUPERADMIN')) Editar @else @if(currentUser()->tieneRoles('USUARIO_CONTABILIDAD') && $factura->estado_etapa === 'CONTABILIDAD') Editar @endif @if(currentUser()->tieneRoles('DIRECCION_ASESORIA_JURIDICA') && $factura->estado_etapa === 'JURIDICO') Editar @endif @if(currentUser()->tieneRoles('USUARIO_TESORERIA') && $factura->estado_etapa === 'TESORERIA') Editar @endif @endif |