@extends('admin.layouts.app') @section('panel') @php $pageTitle = 'Vendor Products'; @endphp @push('breadcrumb-plugins') Pending Products @endpush
Vendor submitted products approve/reject করার জন্য।
| Product | Vendor | Price | Stock | Status | Auto Show | Action |
|---|---|---|---|---|---|---|
|
@if($img)
{{ $product->name }}
{{ $product->product_code ?? $product->code ?? '-' }}
|
{{ $product->vendor->name ?? '-' }} {{ $product->vendor->referral_code ?? '' }} | ৳{{ number_format((float)($product->customer_price ?? 0), 2) }} | {{ $product->stock ?? 0 }} | {{ ucfirst($status) }} | @if($autoShow) Yes @else No @endif |
View
@if($status === 'pending')
@endif
@if($status === 'approved')
@endif
|
|
No product found |
||||||