@extends('layouts.admin') @section('title', 'Products') @section('subtitle', 'Manage your product catalog') @section('actions') + Add Product @endsection @section('content')
{{-- Filters --}}
{{-- Table --}}
@forelse($products as $product) @empty @endforelse
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
✏️
@csrf @method('DELETE')

📦

No products found

{{-- Pagination --}} @if($products->hasPages())
{{ $products->links() }}
@endif
@endsection