@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 ?? 0 }} grams
Quantity: {{ $product->product_quantity }}
Status: @if ($product->product_status == 'Active') Active @else Inactive @endif
Description:

{{ $product->product_description }}

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