@extends('layouts.app') @section('title', $product->name) @section('content')

{{ $product->name }}

Edit Back
@if($product->image_url)
{{ $product->name }}
@endif
Category
{{ $product->category_name }}
Size
{{ $product->size ?? '—' }}
Color
{{ $product->color ?? '—' }}
Barcode
@if($product->barcode)
Barcode {{ $product->barcode }} {{ $product->barcode }} Download SVG
@else — @endif
Purchase Price
{{ number_format($product->purchase_price, 2) }}
Selling Price
{{ number_format($product->selling_price, 2) }}
Quantity
{{ $product->quantity }}
@endsection