@extends('artist.layouts.app') @section('title','Artist Dashboard') @section('content')

Your Artworks

+ Create Artwork
@forelse($paintings as $painting) @empty @endforelse
Image Title Price Action
{{ $painting->title }} ₹{{ number_format($painting->price) }} Edit
@csrf @method('DELETE')
No artworks found
@endsection