mirror of https://github.com/kcal-app/kcal.git
64 lines
3.4 KiB
PHP
64 lines
3.4 KiB
PHP
<x-app-layout>
|
|
<x-slot name="title">Recipes</x-slot>
|
|
<x-slot name="header">
|
|
<div class="flex justify-between items-center">
|
|
<h1 class="font-semibold text-2xl text-gray-800 leading-tight">Recipes</h1>
|
|
<x-button-link.green href="{{ route('recipes.create') }}" class="text-sm">
|
|
Add Recipe
|
|
</x-button-link.green>
|
|
</div>
|
|
</x-slot>
|
|
<x-search-view :route="route('api:v1:recipes.index')" :tags="$tags">
|
|
<x-slot name="results">
|
|
<template x-for="recipe in results" :key="recipe.slug">
|
|
<article class="p-1 border-2 border-black font-sans">
|
|
<h1 class="text-2xl font-extrabold">
|
|
<a x-bind:href="recipe.showUrl"
|
|
class="hover:text-gray-600" x-text="recipe.name"></a>
|
|
</h1>
|
|
<h2 class="leading-snug">
|
|
<span x-text="`${recipe.servings} servings`"></span>
|
|
<span x-show="recipe.volume" x-text="` / ${recipe.volumeFormatted} cups`"></span>
|
|
</h2>
|
|
<section class="flex justify-between items-end font-extrabold" x-show="recipe.serving_weight">
|
|
<h1>Serving weight</h1>
|
|
<div x-text="`${recipe.serving_weight}g`"></div>
|
|
</section>
|
|
<h2 class="font-bold text-right border-t-8 border-black">Amount per serving</h2>
|
|
<section class="flex justify-between items-end font-extrabold">
|
|
<h1 class="text-xl">Calories</h1>
|
|
<div class="text-xl" x-text="`${recipe.caloriesPerServing}`"></div>
|
|
</section>
|
|
<div class="border-t-4 border-black text-sm">
|
|
<hr class="border-gray-500"/>
|
|
<section class="flex justify-between">
|
|
<h1 class="font-bold">Total Fat</h1>
|
|
<div x-text="`${recipe.fatPerServing}g`"></div>
|
|
</section>
|
|
<hr class="border-gray-500"/>
|
|
<section class="flex justify-between">
|
|
<h1 class="font-bold">Cholesterol</h1>
|
|
<div x-text="`${recipe.cholesterolPerServing}mg`"></div>
|
|
</section>
|
|
<hr class="border-gray-500"/>
|
|
<section class="flex justify-between">
|
|
<h1 class="font-bold">Sodium</h1>
|
|
<div x-text="`${recipe.sodiumPerServing}mg`"></div>
|
|
</section>
|
|
<hr class="border-gray-500"/>
|
|
<section class="flex justify-between">
|
|
<h1 class="font-bold">Total Carbohydrate</h1>
|
|
<div x-text="`${recipe.carbohydratesPerServing}g`"></div>
|
|
</section>
|
|
<hr class="border-gray-500"/>
|
|
<section class="flex justify-between">
|
|
<h1 class="font-bold">Protein</h1>
|
|
<div x-text="`${recipe.proteinPerServing}g`"></div>
|
|
</section>
|
|
</div>
|
|
</article>
|
|
</template>
|
|
</x-slot>
|
|
</x-search-view>
|
|
</x-app-layout>
|