@extends('admin.layout') @section('title', 'All Artworks') @section('content')
Manage paintings, review details, and quickly edit records.
| S.No. | Code | Image | Artist | Form | Price | Updated By | Actions |
|---|---|---|---|---|---|---|---|
| {{ $paintings->firstItem() + $loop->index }} | {{ $painting->painting_code ?? '--' }} |
@if($painting->image)
|
{{ $painting->artist->name ?? '--' }} | {{ $painting->form->name ?? '--' }} | @if(!is_null($painting->price)) ₹ {{ (int) $painting->price }} @else -- @endif | {{ $painting->updated_by ?? '--' }} | |
|
No artworks found.
|
|||||||