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

Admin Panel

Artists Directory

@if(session('success'))
{{ session('success') }}
@endif
@forelse($artists as $artist) @empty @endforelse
S.No. Name Profile Photo Artworks Count Updated By Status Action
{{ $artists->firstItem() + $loop->index }} {{ $artist->name }} @if($artist->profile_image) {{ $artist->name }} @else - @endif {{ $artist->paintings_count }} {{ $artist->updated_by ?? '-' }} @if($artist->status === 'active') Active @else Blocked @endif
No artists found.
{{ $artists->links() }}
@endsection