@extends('layouts.app')
@section('title', $product->name)
@section('content')
@if($product->image_url)
@endif
- Category
- {{ $product->category_name }}
- Size
- {{ $product->size ?? '—' }}
- Color
- {{ $product->color ?? '—' }}
- Barcode
-
@if($product->barcode)
@else
—
@endif
- Purchase Price
- {{ number_format($product->purchase_price, 2) }}
- Selling Price
- {{ number_format($product->selling_price, 2) }}
- Quantity
- {{ $product->quantity }}
@endsection