@extends('admin.layout') @section('content')

Admin Panel

Featured Artists

Featured Artists Listing ← Back to All Artists
@if(session('success'))
{{ session('success') }}
@endif
@forelse($artists as $artist) @empty @endforelse
Name Profile Photo Artworks Count Updated By Status Action
{{ $artist->name }} Featured Artist @if($artist->profile_image) {{ $artist->name }} @else - @endif {{ $artist->paintings_count }} {{ $artist->updated_by ?? '-' }} @if($artist->status === 'active') Active @else Blocked @endif
Edit
@csrf @method('DELETE')
@csrf
No featured artists found.
{{ $artists->links() }}
@endsection @push('scripts') @endpush