@extends('layouts.admin.app') @section('content')
| Nº Encomenda | Cliente | Total | Pagamento | Status | Data | Ações |
|---|---|---|---|---|---|---|
| #{{ $order->numero }} | {{-- Cliente --}}
{{ $order->cliente_nome }}
{{ $order->cliente_telefone }}
|
{{-- TOTAL --}}
{{ number_format($order->total, 2, ',', '.') }} Kz | {{-- PAGAMENTO --}}{{ ucfirst($order->payment_method) }} | {{-- STATUS --}}@php $status = $order->status; @endphp {{ ucfirst($status) }} | {{-- DATA --}}{{ $order->created_at?->format('d/m/Y H:i') ?? '-' }} | {{-- AÇÕES --}}👁 Ver |
Nenhuma encomenda encontradaTente alterar os filtros de pesquisa |
||||||