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