@extends('layouts.master') @section('title', 'Product View') @section('style') @endsection @section('script') @endsection @section('content') @include('layouts.header') @include('layouts.title')
@yield('title')
{{ $product->product_name }}

Product Information

{{ $product->product_name }}

Product Code: {{ $product->product_code }}
Price: {{ number_format($product->product_price, 2) }} THB
Weight: {{ $product->product_weight ? $product->product_weight . ' grams' : 'N/A' }}
Quantity: {{ $product->product_quantity }} {{ $product->name }}
Min Stock: {{ $product->product_min_stock_alert }}
Max Stock: {{ $product->product_max_request_per_order }}
Status: @if ($product->product_status == 1) Active @else Inactive @endif
Description:

{{ $product->product_description }}

Back to Product List
@include('layouts.footer') @endsection