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

{{ $product->title }}

{{ $product->metal }} · {{ number_format($product->weight_g,3) }} g · {{ $product->brand ?: '—' }}

£{{ number_format($price ?? 0,2) }}

@csrf
{!! nl2br(e($product->description)) !!}
@push('scripts') @endpush @endsection