@extends('layouts.customer') @section('title', 'Bid Authorization Details – MotoSolution Portal') @section('page_title', 'Bid Authorization #' . $bid->id) @section('content')
Back to All Bids @if($bid->status === 'pending')
@csrf
@endif
@if($bid->status === 'won' && $bid->order)
Congratulations!

This vehicle was successfully won at Japanese Auction!

Order #{{ $bid->order->order_number }} has been generated and import tracking has commenced.

Open Import Tracker
@endif
@if($bid->auctionVehicle && !empty($bid->auctionVehicle->images)) Vehicle @else
@endif
Grade {{ $bid->auctionVehicle->grade ?? '4.5' }}
{{ $bid->auctionVehicle->auctionHouse->name ?? 'USS' }}

{{ $bid->auctionVehicle->year ?? '' }} {{ $bid->auctionVehicle->brand ?? 'Toyota' }} {{ $bid->auctionVehicle->model ?? 'Vehicle' }} {{ $bid->auctionVehicle->grade_package ?? '' }}

Lot #{{ $bid->auctionVehicle->lot_number }} · Chassis: {{ $bid->auctionVehicle->chassis_number ?? 'Pending' }}

Mileage {{ number_format($bid->auctionVehicle->mileage ?? 0) }} km
Displacement {{ $bid->auctionVehicle->engine_cc ?? 1800 }} cc
Transmission {{ $bid->auctionVehicle->transmission ?? 'Automatic' }}
Fuel Type {{ $bid->auctionVehicle->fuel_type ?? 'Hybrid' }}
@if($bid->auctionVehicle && $bid->auctionVehicle->auction_sheet_url)

Official Auction Sheet

Open Full Screen
Auction Sheet
@endif

Bid Activity Log

@forelse($bid->history as $history)
{{ ucwords(str_replace('_', ' ', $history->action)) }} {{ $history->created_at->format('M d, Y h:i A') }}

{{ $history->notes ?? 'Status transitioned from ' . $history->from_status . ' to ' . $history->to_status }}

@empty

No activity logged yet.

@endforelse
Authorization Record

Bid Financial Summary

@php $badgeStyles = [ 'pending' => 'bg-amber-500/20 text-amber-300 border-amber-500/30', 'approved' => 'bg-blue-500/20 text-blue-300 border-blue-500/30', 'submitted' => 'bg-purple-500/20 text-purple-300 border-purple-500/30', 'bidding' => 'bg-red-500/20 text-red-300 border-red-500/30 animate-pulse', 'won' => 'bg-emerald-500/20 text-emerald-300 border-emerald-500/30', 'lost' => 'bg-slate-700/40 text-slate-400 border-slate-600/30', 'cancelled' => 'bg-rose-500/20 text-rose-300 border-rose-500/30' ]; @endphp {{ $bid->status }}
Starting Auction Price: ¥{{ number_format($bid->auctionVehicle->starting_price_jpy ?? 0) }}
Your Maximum Authorized Bid: ¥{{ number_format($bid->max_bid_jpy) }}
Estimated Landed Cost (Dhaka): ৳{{ number_format($bid->estimated_landed_cost_bdt) }}
Security Deposit Token: ৳{{ number_format($bid->deposit_amount_bdt ?? 200000) }} ({{ ucfirst($bid->deposit_status ?? 'verified') }})

How Japanese Auction Bidding Works:

1. MotoSolution does not hammer bids with single clicks.
2. Our CRM administrators verify your deposit and submit the bid ceiling to the auction floor.
3. If hammer falls below your ceiling, the entire difference is credited back to you!

@endsection