@extends('layouts.main') @section('title', '| Alertas') @section('titlePage', 'Alertas') @section('content') @role('Admin|Vendedor|Recepcion|Operaciones')
{{ $message }}
Cliente | Teléfono | Extintor | Descripción | Vencimiento | Restantes | Alerta | |
---|---|---|---|---|---|---|---|
{{ $usage->orderDetail?->order?->customer?->name }} | {{ $usage->orderDetail?->order?->customer?->phones }} | {{ $usage->orderDetail?->product?->name }} | {{ $usage->orderDetail?->product?->description }} | {{ $usage->date_recharge_expiration }} | {{ now()->diffForHumans($usage->date_recharge_expiration) }} |
Quedan pocos días de vigencia |
{{ $message }}
No | Producto | Stock | |
---|---|---|---|
{{ ++$i }} | {{ $refill->name }} | {{ $refill->quantity }} Unidades |
Quedan pocos unidades |
No | Orden | Cliente | Sucursal | Telefono | Producto | Cantidad | Precio | Técnico | |
---|---|---|---|---|---|---|---|---|---|
{{ ++$j }} | {{$usage?->orderDetail?->order->id}} | {{ $usage->orderDetail?->order?->customer?->name }} | {{ $usage->orderDetail?->order?->brancOffice?->name }} | {{ $usage->orderDetail?->order?->customer?->phones }} | {{$usage?->refill?->name}} | {{$usage?->quantity}} | {{$usage?->refill?->price_unit}} | {{$usage?->orderDetail?->owner?->name}} |
@if($usage?->state == 'NEW')
Aprobar
Rechazar
@else
{{$usage?->state}} @endif |