@extends('layout.template') @section('title','My Orders') @section('content')

My Orders

{{-- FILTER TABS --}}
@php $tabs = ['active', 'completed', 'cancelled', 'returned']; @endphp @foreach($tabs as $tab) @endforeach
{{-- EMPTY STATE --}} @if(empty($orders))
📦
No Orders Found

You don’t have any {{ $status }} orders yet

Start Shopping
@else
@include('partials.order-list', ['orders' => $orders, 'status' => $status])
@endif
@endsection