@extends('layouts.app') @section('page-title', 'Voucher Products') @section('content')
| Name | Category | SKU | Cost | Selling | Stock | Status | |
|---|---|---|---|---|---|---|---|
| {{ $p->name }} | {{ $p->category ?? '—' }} | {{ $p->sku ?? '—' }} | {{ $p->currency }} {{ number_format($p->cost_price, 2) }} | {{ $p->currency }} {{ number_format($p->selling_price, 2) }} | {{ $p->stock }} | {{ $p->is_active ? 'Active' : 'Inactive' }} | Edit |