@extends('main-site.layouts.app') @section('content')
  • {{ 'RFQ-' . \App\Http\Helpers\HelperApp::convert_numbers($order->order_num) }}
  • {{ $order->department->name }}
  • {{ $order->sub_department->name }}
@forelse ($data as $offer)
Avatar
{{ \App\Http\Helpers\HelperApp::convert_numbers($offer->user->name) }}

{{ \App\Http\Helpers\HelperApp::convert_numbers(count($offer->items)) }} {{ __('messages_301.Items') }}

{{ __('site.Buyer.RFQ_24') }} :

@if ($offer->total && count($offer->items)) {{ \App\Http\Helpers\HelperApp::convert_numbers($offer->total) . ' ' . $offer->items[0]->currency->currency }} @else {{ \App\Http\Helpers\HelperApp::convert_numbers(0) }} @endif
@if ($offer->order->order_type == 'product') @endif @if ($offer->order->order_type == 'product') @endif @forelse ($offer->items as $item) {{-- @dd($item) --}} @if ($offer->order->order_type == 'product') @endif @if ($offer->order->order_type == 'product') @endif @empty @endforelse
{{ __('messages_301.Item name') }}{{ __('messages_301.Quantity') }}{{ __('site.Buyer.RFQ_25') }}{{ __('site.Buyer.RFQ_24') }}{{ __('site.Buyer.Currency') }} {{ __('site.Buyer.RFQ_4') }} {{ __('messages_301.Delivery type') }} {{ __('messages_301.Attachments') }}
{{ \App\Http\Helpers\HelperApp::convert_numbers($item->order_item->name) }} {{ \App\Http\Helpers\HelperApp::convert_numbers($item->qty) }} {{ \App\Http\Helpers\HelperApp::convert_numbers($item->price) . ' ' . $item->currency->currency }} {{ \App\Http\Helpers\HelperApp::convert_numbers($item->total) . ' ' . $item->currency->currency }} {{ $item->currency->currency }} {{ \App\Http\Helpers\HelperApp::convert_numbers($item->order_item->date) }} {{ $item->order_item->delivery_type->name }}
@empty
@endforelse
{{ $data->appends(Request::except(['_token']))->links('main-site.inc.pagination') }}
@endsection @section('script') @endsection