@extends('admin.layouts.app') @section('title', 'Sifarişlər') @section('content')

Sifarişlər

@forelse($orders as $order) @empty @endforelse
Sifariş № Müştəri Telefon Məhsullar Status Məbləğ Tarix
{{ $order->order_number }} {{ $order->shipping_name ?: trim(($order->customer?->first_name ?? '') . ' ' . ($order->customer?->last_name ?? '')) }} {{ $order->shipping_phone ?: $order->customer?->phone }} {{ $order->items->take(2)->pluck('product_name')->join(', ') }} @if($order->items->count() > 2) və {{ $order->items->count() - 2 }} məhsul @endif {{ $order->status }} {{ number_format($order->total, 2, ',', ' ') }} AZN {{ $order->created_at->format('d.m.Y H:i') }} Bax
Hələ sifariş yoxdur.
@if(method_exists($orders, 'links'))
{{ $orders->links() }}
@endif
@endsection