@extends('layouts.app') @section('content')
| Product Code | Product Name | Category | Unit | Purchase Price | Sale Price | Tax | Action |
|---|---|---|---|---|---|---|---|
| {{ $product->product_code }} | {{ $product->product_name }} | {{ $product->category->category_name ?? '' }} | {{ $product->unit->unit_code ?? '' }} | {{ round($product->purchase_price, 2) }} | {{ round($product->sale_price, 2) }} | {{ round($product->tax_percentage, 2) }} | |
| @lang('general.no_details_found') | |||||||