@extends('artist.layouts.app') @section('title','My Artworks') @section('content')

My Artworks

Add Artwork
@if(session('success'))
{{ session('success') }}
@endif
@forelse($paintings as $painting) @empty @endforelse
Code Image Title Form Price Updated By Actions
{{ $painting->painting_code ?? '—' }} @if($painting->image) @endif {{ $painting->title }} {{ $painting->form->name ?? '—' }} ₹ {{ number_format($painting->price,2) }} {{ $painting->updated_by ?? '—' }}
@csrf @method('DELETE')
No artworks found
{{ $paintings->links() }}
@endsection @push('scripts') @endpush