@extends('layouts.admin') @section('title', 'Products') @section('subtitle', 'Manage your product catalog') @section('actions') + Add Product @endsection @section('content')
| Product | Barcode | Category | Cost | Price | Status | Actions |
|---|---|---|---|---|---|---|
|
{{ $product->name_en }} @if($product->name_si){{ $product->name_si }} @endif |
{{ $product->barcode }} | {{ $product->category->name_en ?? '-' }} | LKR {{ number_format($product->cost_price, 2) }} | LKR {{ number_format($product->selling_price, 2) }} | @if($product->is_active) Active @else Inactive @endif | |
|
📦 No products found |
||||||