@if ($category)
{!! Form::open(['url' => 'admin/world/fauna-categories/delete/' . $category->id]) !!}
You are about to delete the fauna category {{ $category->name }}. This is not reversible.
If you would like to hide the category from users, you can set it as inactive from the fauna category settings page.
@if (count($category->faunas))
If you delete this category, you will also delete:
@foreach ($category->faunas as $key => $fauna)
{!! $fauna->displayName !!}
@if ($key != count($category->faunas) - 1 && count($category->faunas) > 2)
,
@endif @if ($key == count($category->faunas) - 2)
and
@endif
@endforeach.
@endif
Are you sure you want to delete {{ $category->name }}?
{!! Form::submit('Delete Fauna Category', ['class' => 'btn btn-danger w-100']) !!}
{!! Form::close() !!}
@else
Invalid fauna category selected.
@endif