@extends('admin.layout') @section('title', 'Artwork Types') @section('content')

Artwork Types

@if(session('success'))
{{ session('success') }}
@endif
@foreach($artworks as $artwork) @endforeach
# Image Name Status Action
{{ $loop->iteration }} @if($artwork->image) @else No Image @endif {{ $artwork->name }}
{{ $artwork->slug }}
@if($artwork->status) Active @else Inactive @endif
@csrf @method('DELETE')
@endsection