@extends('admin.layout') @section('title', 'All Artworks') @section('content')

Artwork Management

Manage paintings, review details, and quickly edit records.

@if(session('success'))
{{ session('success') }}
@endif
Total Artworks
{{ number_format($paintings->total()) }}
Visible On This Page
{{ number_format($paintings->count()) }}
Current Page
{{ number_format($paintings->currentPage()) }}
@forelse($paintings as $painting) @empty @endforelse
S.No. Code Image Artist Form Price Updated By Actions
{{ $paintings->firstItem() + $loop->index }} {{ $painting->painting_code ?? '--' }} @if($painting->image) {{ $painting->title }} @else No image @endif {{ $painting->artist->name ?? '--' }} {{ $painting->form->name ?? '--' }} @if(!is_null($painting->price)) ₹ {{ (int) $painting->price }} @else -- @endif {{ $painting->updated_by ?? '--' }}
No artworks found.
Add your first artwork to start building the catalog.
{{ $paintings->links() }}
@endsection