@extends('layouts.admin') @section('content')
Add Product
@foreach($offers as $offer) @endforeach
Product ID Qty Price Exp.Date Status Actions
{{$offer->rfq->defaultProduct->name}} {{$offer->rfq->category->name}}
{{$offer->ref_id}} {{$offer->volume}} {{$offer->rfq->unit}} {{$offer->price_per_kg}} {{$offer->rfq->currency}} {{$offer->offer_exp_date}} @if($offer->is_approved == null or $offer->is_approved == '0')
Pending
@elseif($offer->is_approved == '1')
Accepted
@elseif($offer->is_approved == '2')
Rejected
@endif
Actions
@endsection