@extends('frontend.template-1.partials.master') @section('content') @include('frontend.template-1.breadcrumb.breadcrumb')
| {{ translate('Image') }} | {{ translate('Bidding Product') }} | {{ translate('Bid Amount') }} | {{ translate('Highest Bid') }} | {{ translate('Status') }} | {{ translate('Action') }} |
|---|---|---|---|---|---|
| {{ $bids->products->getTranslation('name') }} | {{ currency_symbol() . $bids->bid_amount }} | {{ currency_symbol() . highest_bid($bids->product_id) }} | @if ($bids->status == 1) {{ translate('Processing') }} @elseif($bids->status == 2) {{ translate('Win') }} @elseif($bids->status == 7) {{ translate('Refunded') }} @elseif($bids->status == 4) {{ translate('Completed') }} @elseif($bids->status == 8) {{ translate('Shipped') }} @elseif($bids->status == 6) {{ translate('Delivered') }} @endif | ||
{{ translate('No Data Found') }} |
|||||
{{ translate('Showing') }} {{ $bidding->firstItem() }} to {{ $bidding->lastItem() }} {{ translate('of total') }} {{ $bidding->total() }} {{ translate('entries') }}
{!! $bidding->links('vendor.pagination.custom') !!}