@extends('admin.admin') @section('title') Whole Sale Quotation List @endsection @section('content')

All Quotations

@foreach ($wholeSaleQuotations as $sl => $quotation) @endforeach
SL Product Name Email Phone Quantity Offer Price Notes
{{ $sl + 1 }} {{ $quotation->wholeSaleProduct->name ?? '' }} {{ $quotation->name }} {{ $quotation->email ?? '' }} {{ $quotation->phone ?? '' }} {{ $quotation->quantity ?? '' }} {{ $quotation->customer_offer_price ?? '' }} {{ $quotation->notes ?? '' }}
@endsection