@extends('layouts.nova') @section('content')

My Gallery

@if($artworks->isEmpty())

You have not uploaded any artworks yet.

@else
@foreach($artworks as $art)
{{ $art->title }}
{{ $art->title }}
Published: {{ optional($art->published_at)->format('Y-m-d') }}
Edit
@csrf @method('DELETE')
@endforeach
{{ $artworks->links() }}
@endif
@endsection