@lang('lang_v1.bounce_log_help')
| @lang('lang_v1.store') | @lang('business.location') | @lang('business.state') | @lang('sale.product') | @lang('lang_v1.searched_for') | @lang('lang_v1.bounce_reason') | @lang('messages.date') | @lang('lang_v1.time') | @lang('lang_v1.bounce_count') | @lang('lang_v1.qty_at_the_time') | @lang('lang_v1.estimated_lost_sales') |
|---|---|---|---|---|---|---|---|---|---|---|
| {{ $r->business_name }} | {{ $r->location_name }} | {{ $r->state }} | {{ $r->product_name }} | {{ $r->search_term }} | @if($r->bounce_type === 'out_of_stock') @lang('lang_v1.bounce_out_of_stock') @else @lang('lang_v1.bounce_not_listed') @endif | {{-- Date and time in separate columns so the log can be sorted or exported by either on its own. --}}{{ \Carbon::parse($r->bounced_at)->format('d M Y') }} | {{ \Carbon::parse($r->bounced_at)->format('H:i') }} | {{ $r->bounce_count }} | {{ @format_quantity($r->qty_available) }} | @format_currency($r->bounce_count * $r->unit_price) |