@extends('layouts.app') @section('title', 'Product Approvals') @section('page-title', 'Product Approvals') @section('sidebar') @include('partials.manager-sidebar') @endsection @section('content')
| Product | Vendor | Price | Status | Actions |
|---|---|---|---|---|
| {{ $product->name }} | {{ $product->vendor->name }} | ₹{{ number_format($product->price, 2) }} | @php $badge = match($product->status) { 'approved' => 'bg-success', 'rejected' => 'bg-danger', default => 'bg-warning text-dark', }; @endphp {{ $product->status }} | @if ($product->status !== 'approved') @endif @if ($product->status !== 'rejected') @endif |
| No products found | ||||