@extends('layouts.app') @section('title', 'Seller Orders') @section('content')

My Orders

Manage and process customer orders

Pending Orders

{{ $orders->where('status', 'pending')->count() }}

Confirmed

{{ $orders->where('status', 'confirmed')->count() }}

Shipped

{{ $orders->where('status', 'shipped')->count() }}

Delivered

{{ $orders->where('status', 'delivered')->count() }}

@if($orders->count() > 0) @else

No orders yet

You haven't received any orders yet.

@endif
@if($orders->count() > 0)
{{ $orders->links() }}
@endif
@endsection