@extends('layouts.app') @section('title', 'Products') @push('style') @endpush @section('content') @php use App\Models\Product; $routePrefix = strtolower(auth()->user()->role->name); $canCreateLeads = auth()->user()->hasPermissionName('products.create'); $dosageForms = Product::where('company_id', Auth::user()->company_id) ->distinct() ->pluck('dosage_form') ->sort() ->values(); @endphp

Product Management

Manage your pharmaceutical products and inventory.
@if($canCreateLeads)
Add New Product
@endif
@if(session('success')) @endif
All Products
# Brand Name Dosage Form Packing Type Pack Size Therapeutic Category MRP (₹) HSN Code GST Rate Status Action
@endsection @push('script') @endpush