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

Vendor Request Info

Go to main website
View →

Basic Info

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

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

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

Password: {{ $vendor?->user?->raw_password }}

Product Info

@csrf @foreach($vendor->products()->where('status', 0)->get() as $index => $product)

Product {{ $index + 1 }}

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

Product Location: {{ $product->location }}


@endforeach
@endsection