@extends('merchant.layouts.app') @section('panel')
@forelse($bids as $bid) @empty @endforelse
@lang('S.N.') @lang('User Name') @lang('Amount') @lang('Carbon Amount') @lang('Bid Time') @lang('Action')
{{ $bids->firstItem() + $loop->index }} {{ __($bid->user->fullname) }}
@php $bidId = $bid->winner ? $bid->winner->bid_id : ''; @endphp @if ($bid->id == $bidId) @lang('Winner') @endif
{{ $general->cur_sym }}{{ showAmount($bid->amount) }} {{ showAmount($bid->carbon_amount) }} {{ showDateTime($bid->created_at) }}
{{ diffForHumans($bid->created_at) }}
{{ __($emptyMessage) }}
@if ($bids->hasPages()) @endif
{{-- BId modal --}} @endsection @push('breadcrumb-plugins') @lang('Go Back') @endpush @push('script') @endpush