mirror of https://github.com/kcal-app/kcal.git
39 lines
2.1 KiB
PHP
39 lines
2.1 KiB
PHP
<x-app-layout>
|
|
<x-slot name="title">Delete {{ $recipe->name }}</x-slot>
|
|
<x-slot name="header">
|
|
<h1 class="font-semibold text-xl text-gray-800 leading-tight">
|
|
Delete {{ $recipe->name }}?
|
|
</h1>
|
|
</x-slot>
|
|
<form method="POST" action="{{ route('recipes.destroy', $recipe) }}">
|
|
@method('delete')
|
|
@csrf
|
|
<div class="pb-3">
|
|
<div class="text-lg">Are you sure what to delete <span class="font-extrabold">{{ $recipe->name }}</span>?</div>
|
|
<div class="flex flex-col space-y-2 mt-2 text-lg">
|
|
@if(!$recipe->ingredientAmountRelationships->isEmpty())
|
|
<div class="flex space-x-2 items-center text-lg">
|
|
<div class="text-amber-500">
|
|
<svg class="h-8 w-8" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
|
<path fill-rule="evenodd" d="M10 1.944A11.954 11.954 0 012.166 5C2.056 5.649 2 6.319 2 7c0 5.225 3.34 9.67 8 11.317C14.66 16.67 18 12.225 18 7c0-.682-.057-1.35-.166-2.001A11.954 11.954 0 0110 1.944zM11 14a1 1 0 11-2 0 1 1 0 012 0zm0-7a1 1 0 10-2 0v3a1 1 0 102 0V7z" clip-rule="evenodd" />
|
|
</svg>
|
|
</div>
|
|
<div>Deleting this recipe will also remove it from the following recipes:</div>
|
|
</div>
|
|
<ul class="list-disc list-inside ml-3 space-y-1">
|
|
@foreach ($recipe->ingredientAmountRelationships as $ia)
|
|
<li> <a class="text-gray-500 hover:text-gray-700"
|
|
href="{{ route('recipes.show', $ia->parent) }}">{{ $ia->parent->name }}</a></li>
|
|
@endforeach
|
|
</ul>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
<x-inputs.button class="bg-red-800 hover:bg-red-700">
|
|
Yes, delete
|
|
</x-inputs.button>
|
|
<a class="ml-3 text-gray-500 hover:text-gray-700" href="{{ route('recipes.show', $recipe) }}">
|
|
No, do not delete</a>
|
|
</form>
|
|
</x-app-layout>
|