@extends('layouts.adminpages') @section('content')
| No. Factura | Valor | Fecha Factura | Tienda | Estado |
|---|---|---|---|---|
| {{ $item->number }} | $ {{ number_format($item->value, 0, ',', '.') }} | {{ $item->date }} | {{ str_limit($item->shop->name, 10) }} | @if ($item->status == 0) Pendiente @endif @if ($item->status == 1) Aprobada @endif @if ($item->status == 2) Rechazada @endif |