@extends('layouts.app') @section('title', 'My Account - AVIOBOOTS') @section('content')

Welcome back, {{ $user->name }}!

@if($orders->count())
@foreach($orders as $order)

Order #{{ $order->id }}

{{ strtoupper($order->status) }}

{{ $order->created_at->format('M d, Y') }}

@foreach($order->items->take(3) as $item) @endforeach
Total: Rs {{ number_format($order->total, 0) }}
Payment: {{ strtoupper($order->payment_method) }}
@if($order->status !== 'complete' && $order->tracking_id) Track Order @elseif($order->tracking_id) View Status @endif
@endforeach
@else

You haven't placed any orders yet.

Start Shopping
@endif
@endsection