@extends('layouts.admin') @section('page-title') {{ __('Artist') }} @endsection @section('title')
{{ __('Artist') }}
@endsection @section('breadcrumb') @endsection @section('action-btn')
@endsection @section('filter') @endsection @section('content')
@foreach ($artists as $artist) @endforeach
{{ __('Avatar') }} {{ __('Name') }} {{ __('Action') }}
@if (!empty($artist->picture)) picture }}" class="rounded-circle" alt="images"> @else Image placeholder @endif
{{ $artist->artist_name }}
{!! Form::open(['method' => 'DELETE', 'route' => ['artist.destroy', $artist->id], 'id' => 'delete-form-' . $artist->id]) !!} {!! Form::close() !!}
@endsection @push('script-page') @endpush