@extends('layouts.app')
@section('title', 'My Products')
@section('page-title', 'My Products')
@section('sidebar')
@include('partials.vendor-sidebar')
@endsection
@section('content')
| Name |
Price |
Stock |
Status |
Actions |
@forelse ($products as $product)
| {{ $product->name }} |
₹{{ number_format($product->price, 2) }} |
{{ $product->stock }} |
@php
$badge = match($product->status) {
'approved' => 'bg-success',
'rejected' => 'bg-danger',
default => 'bg-warning text-dark',
};
@endphp
{{ $product->status }}
|
|
@empty
| No products found |
@endforelse
{{ $products->links() }}
@endsection