@extends('admin.layouts.app') @section('panel')
@lang('Driver') @lang('Amount') @lang('Date') @lang('Status') @forelse($bids as $bid) {{ showAmount(@$bid->bid_amount) }}
{{ showDateTime($bid->created_at) }}
{{ diffForHumans($bid->created_at) }}
@php echo $bid->statusBadge @endphp @empty @endforelse
@if ($bids->hasPages()) {{ paginateLinks($bids) }} @endif
@endsection