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

Pending Product Info

Go to main website
View →

Vendor Info

Vendor Name: {{ $product->vendor->user?->first_name }} {{ $product->vendor->user?->last_name }}

Vendor Email: {{ $product->vendor->user?->email }}

Vendor Store Name: {{ $product->vendor->user?->username }}

Sent Product Info

Tracking ID: {{ $product->tracking_id }}

Drop Off Location: {{ $product->dropoff }}

Courier Service: {{ $product->courier }}

Product Name: {{ $product->name }}

Product Category: {{ $product->category }}

Product value: ${{ number_format($product->value, 2) }}

Product Description: {{ $product->description }}

Product Image 1
This will be the image that will display on image cards @if($product->image1 != null) @else

No Image

@endif
Product Image 2 @if($product->image2 != null) @else

No Image

@endif
Product Image 3 @if($product->image3 != null) @else

No Image

@endif
@csrf
@endsection