@extends('layouts.admin') @section('title', 'Product Details') @section('page-title', 'Product Details') @section('breadcrumbs') Products chevron_right {{ $product->name }} @endsection @section('content')
{{ $product->name }}
{{ $product->code ?? '-' }}
{{ $product->description }}
{{ $product->category->name ?? '-' }}
{{ $product->brand->name ?? '-' }}
{{ $product->unit ? $product->unit->name . ' (' . $product->unit->short_name . ')' : '-' }}
{{ $product->tax ? $product->tax->name . ' (' . $product->tax->rate . '%)' : '-' }}
{{ number_format($product->selling_price, 2) }}
{{ number_format($product->purchase_price, 2) }}
{{ $product->discount_type === 'percentage' ? $product->discount_value . '%' : number_format($product->discount_value, 2) }}
{{ $product->stock }}
{{ $product->alert_quantity }}
{{ $product->barcode }}