@extends('layouts.main') @section('title', 'Siparişlerim') @section('content')
@include('customer.partials.account-sidebar')

Siparişlerim

@forelse($orders as $order)
Sipariş No: {{ $order->order_number }}
Tarih: {{ $order->created_at->format('d.m.Y H:i') }}
Durum
{{ $order->getStatusTitle() }}
Toplam Tutar
₺{{ number_format($order->total, 2) }}
Teslimat Adresi:
{{ $order->shipping_address }}
@empty

Henüz siparişiniz bulunmamaktadır.

Alışverişe başlamak için tıklayın
@endforelse @if($orders->hasPages())
{{ $orders->links() }}
@endif
@endsection