@extends('layouts.admin') @section('title', 'Admin CRM Dashboard – MotoSolution Bangladesh') @section('page_title', 'Automotive Management Console') @section('content')
@if($pendingBids > 0)

{{ $pendingBids }} Customer Bid Authorizations Awaiting Verification

Clients have authorized max bid ceilings in JPY. Verify deposit and dispatch to Japan floor API.

Review Pending Bids →
@endif
Pending Bids

{{ $pendingBids }}

Needs review
Won Auctions

{{ $wonAuctions }}

Hammered
Live Auctions

{{ $activeAuctions }}

Across 6 houses
Ready Stock

{{ $readyStockCount }}

In Dhaka showroom
Import Orders

{{ $totalOrders }}

12-step pipeline
New Leads

{{ $newLeadsCount }}

Uncontacted
Total Pipeline Value

৳{{ number_format($totalRevenueBdt) }}

Gross landed value of active vehicle orders
Verified Collections

৳{{ number_format($totalPaidBdt) }}

Credited to MotoSolution corporate bank
Outstanding Balance

৳{{ number_format($pendingPaymentsBdt) }}

Scheduled on Chittagong & delivery milestones

Bids Requiring Staff Review

All Bids CRM →
@if($pendingBidsList->count() > 0)
@foreach($pendingBidsList as $bid) @endforeach
Customer Vehicle / Lot Auction House Max Bid JPY Landed BDT (Est) Review Action

{{ $bid->user->name ?? 'Customer' }}

{{ $bid->user->phone ?? '' }}

{{ $bid->auctionVehicle->brand ?? '' }} {{ $bid->auctionVehicle->model ?? '' }}

Lot #{{ $bid->auctionVehicle->lot_number }} · Grade {{ $bid->auctionVehicle->grade ?? '4.5' }}
{{ $bid->auctionVehicle->auctionHouse->name ?? 'USS Tokyo' }} ¥{{ number_format($bid->max_bid_jpy) }} ৳{{ number_format($bid->estimated_landed_cost_bdt) }} Review & Dispatch
@else
All client bid authorizations have been reviewed and dispatched!
@endif

Active Import Logistics Orders

All Orders →
@foreach($recentOrders as $order)
Car
#{{ $order->order_number }} ({{ $order->user->name ?? 'Client' }})

{{ $order->car_title }}

B/L: {{ $order->bl_number ?? 'Pending' }}
{{ str_replace('_', ' ', $order->status) }} Paid: ৳{{ number_format($order->paid_amount_bdt) }} / ৳{{ number_format($order->total_amount_bdt) }}
Manage
@endforeach
@endsection