@extends('layouts.admin_layout') @section('content')

Pending Products

Go to main website
View →
{{--
@csrf Search Product Name
--}}

All Sent Products Total ({{ count($products) }})


@forelse($products as $product) @empty

No Pending Products.




@endforelse
Product Name Vendor Produt Value Actions

{{ $product->name }}

{{ $product->vendor->user->username }} ${{ number_format($product->value, 2) }}
@endsection