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

{{ $artwork->name }}

Reset
@forelse($paintings as $painting)
@auth ❤️ @endauth
{{ $painting->title }}
{{ Str::limit($painting->title, 22) }}
@if($painting->price_on_request) Price on Request @elseif(!is_null($painting->price)) ₹ {{ number_format((int) $painting->price) }} @else @endif
View Details →
@empty
No artworks found.
@endforelse
{{ $paintings->withQueryString()->links() }}
@endsection {{-- ================= STYLES (SAME AS PAINTINGS PAGE) ================= --}}