@extends('layouts.app') @section('title', 'POS Products') @section('nav_pos', 'bg-teal-50 text-teal-700 font-semibold') @section('page_title', 'Product Catalog') @section('page_subtitle', 'Manage POS products and services') @section('content') @if(session('success'))
{{ session('success') }}
{{ $products->count() }} Products
| Name | Category | Price | Status | ||||
|---|---|---|---|---|---|---|---|
|
@if($product->image_path)
|
{{-- Name --}}
{{ $product->name }} @if($product->description){{ $product->description }} @endif {{-- Image controls in edit mode --}}
@if($product->image_path)
@endif
|
{{-- Category --}}
{{ $catLabels[$product->category] ?? $product->category }} | {{-- Price --}} | ₱{{ number_format($product->price, 0) }} | {{-- Status --}}@if($product->active) Active @else Inactive @endif | {{-- Actions --}}
|
{{-- Hidden edit form (multipart for file upload) --}}