@extends('layouts.admin_layout') @section('content')


     Create A Bid

Go to website
View →

Add Bid On This Product

@csrf

Active Bids

@php $bids = $product->bids?->where('status', 0); @endphp @forelse($bids as $bid) @empty

No Active Bids.




@endforelse
Bidder Amount Date
{{ $bid->store_name}} $ {{ number_format($bid->amount, 2) }} {{ date('M j Y', strtotime($bid->created_at)) }}
@endsection