@extends('layouts.admin') @section('page-title') {{ __('Albums') }} @endsection @section('title')
{{ __('Albums') }}
@endsection @section('breadcrumb') @endsection @section('action-btn')
@endsection @section('filter') @endsection @section('content')
@foreach ($albums as $album) @endforeach
{{ __('Cover') }} {{ __('Name') }} {{ __('Artist') }} {{ __('Released on') }} {{ __('Action') }}
@if (!empty($album->image)) image }}" class="rounded-circle" alt="images"> @else Image placeholder @endif
{{ $album->name }} {{ $album->get_artist_name() }} {{ $album->release_date }}
{!! Form::open(['method' => 'DELETE', 'route' => ['album.destroy', $album->id], 'id' => 'delete-form-' . $album->id]) !!} {!! Form::close() !!}
@endsection