@extends('layouts.app') @section('title', $painting->title) @section('content')
{{-- LEFT IMAGE --}}
{{ $painting->title }}
{{-- RIGHT DETAILS --}}
{{-- TITLE --}}

{{ $painting->painting_code ? $painting->painting_code.': ' : '' }} {{ $painting->title }}


{{-- ARTIST --}} @if($painting->artist)
{{ $painting->artist->name }}
@endif {{-- PRICE --}}
@if($painting->price_on_request)
Price on Request
@else
₹ {{ number_format((int) $painting->price) }} (+ GST)
@endif
{{-- DESCRIPTION --}}

{!! strip_tags($painting->description) !!}

{{-- SIZE --}} @if($painting->height && $painting->width)
Size (H×W) → {{ (int) $painting->height }}×{{ (int) $painting->width }} Inches
@endif {{-- FORM + MEDIUM --}}
Form → {{ $painting->form->name ?? '—' }} | Medium → {{ $painting->medium->name ?? '—' }}
{{-- THEMES --}} @if($painting->categories->count())
Themes
@foreach($painting->categories as $cat) {{ $cat->name }} @endforeach
@endif {{-- ACTION BUTTONS (COLUMN WISE) --}}
📞 Call About This Artwork
{{-- ================= EMAIL MODAL ================= --}} @endsection @push('scripts') @endpush {{-- ================= STYLES ================= --}}