@extends('layouts.app') @section('title', $product->name . ' - Sweet Delights Bakery') @section('description', \Illuminate\Support\Str::limit($product->description ?? 'Delicious ' . $product->name . ' from Sweet Delights Bakery. Freshly baked with love.', 160)) @section('content')
R{{ number_format($product->price, 2) }}
@endif{{ $product->description }}
@if($product->specs)Category: {{ $product->category->name }}
Availability: {{ $product->availability ? 'In Stock' : 'Out of Stock' }}