@extends('layouts.app') @section('title', 'My Products') @section('subtitle', 'Manage your product listings') @section('content')
Manage your product listings and track their approval status
| Product | Category | Price | Stock | Status | Date | Actions |
|---|---|---|---|---|---|---|
|
{{ Str::limit($product->name, 30) }}
{{ Str::limit($product->description, 40) }}
|
{{ $product->category }} | ${{ number_format($product->price, 2) }} | {{ $product->quantity }} |
{{ ucfirst($product->status) }}
@if($product->isRejected() && $product->rejection_reason)
{{ Str::limit($product->rejection_reason, 30) }}
@endif
|
{{ $product->created_at->format('M j, Y') }} |