@extends('layouts.admin') @section('heading', 'Good morning, ' . Auth::guard('admin')->user()->name) @section('subheading', "Here's what's happening across your shop today.") @section('content') @php $shop = Auth::guard('admin')->user()->shop ?? null; $shopLogo = $shop?->logo ? asset('storage/' . $shop->logo) : null; @endphp
@if($shopLogo) @endif

Orders today

{{ $stats['orders_today'] }}

Pending delivery

{{ $stats['pending_delivery'] }}

Revenue this month

₹{{ number_format($stats['revenue_this_month'], 0) }}

Balance due (கடன்)

₹{{ number_format($stats['balance_due'], 0) }}

Order pipeline

@php $colors = [ 'received' => ['bg' => '#EEEDFE', 'text' => '#5E35B1'], 'cutting' => ['bg' => '#FAECE7', 'text' => '#993C1D'], 'stitching' => ['bg' => '#FBEAF0', 'text' => '#993556'], 'finishing' => ['bg' => '#FAEEDA', 'text' => '#854F0B'], 'ready' => ['bg' => '#E1F5EE', 'text' => '#0F6E56'], ]; @endphp @foreach($stats['pipeline'] as $stage => $count)
{{ $count }}
{{ $stage }}
@endforeach
@endsection