@extends('layouts.app') @section('page-title', 'Voucher Products') @section('content') @if($products->isEmpty())
No voucher products yet. Add the first →
@else
@foreach($products as $p) @endforeach
NameCategorySKUCostSellingStockStatus
{{ $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
@csrf @method('DELETE')
@endif @endsection