@extends('layouts.base') @section('caption', 'Information about product') @section('title', 'Information about product') @section('content')
| Name | {{ $product->name }} |
|---|---|
| Category | {{ $product->category }} |
| Count | {{ $product->count }} |
| Price | {{ $product->price }} |
| Status | {{ $product->is_active ? 'Yes' : 'No' }} |