store

Published Products

{{ $publishedProductsCount }}

store

Unpublished Products

{{ $unpublishedProductsCount }}

Completed Orders
@foreach ($orders as $order) @if ($order->status === 7) id) }}" style="font-family: Arial, sans-serif; font-size: 14px;">{{ $order->tracking_no }}
{{ $order->created_at->format('d M h:i A') }}
@endif @endforeach
store

Product Status

@php $totalStock = 0; $remainingStock = 0; @endphp @foreach ($products as $product) @php $totalStock += $product->qty; $remainingStock += $product->qty; @endphp

Product Name: {{ $product->name }}

Stock Quantity: {{ $product->qty }}

@endforeach
{{ $remainingStock }} / {{ $totalStock }}