@extends('layouts.app') @section('content')
{{ $website->name }} - Setup marketplace integration
| Product | Price | Stock | Status |
|---|---|---|---|
| {{ $product->name }} | RM {{ number_format($product->price, 2) }} | {{ $product->stock_quantity ?? 'N/A' }} | {{ $product->is_active ? 'Active' : 'Inactive' }} |
Add some products to your website first.