@extends('layouts.admin') @section('title', 'Pedidos') @section('content')
Gestión de pedidos de venta
| Número | Cliente | Pago | Total | Estado | Factura | Acciones |
|---|---|---|---|---|---|---|
|
{{ $o->number }}
{{ $o->seller?->name }}
|
{{ $o->client->business_name }} | {{ $o->paymentMethodLabel() }} | ${{ number_format((float) $o->total, 2) }} | {{ $o->statusLabel() }} | @include('partials.invoice-status', ['order' => $o, 'compact' => true]) |
Ver
@if($canUnlock)
@endif
@if($canGuide)
@endif
|
| No hay pedidos registrados. | ||||||