@extends('layouts.app') @section('title', 'Seller Orders') @section('content')
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() }}
You haven't received any orders yet.