@if ($recipe->is_limited)
@endif
Ingredients
@foreach ($recipe->ingredients as $ingredient)
@include('home.crafting._recipe_ingredient_entry', ['ingredient' => $ingredient])
@endforeach
Rewards
@foreach ($recipe->reward_items as $type)
@foreach ($type as $item)
@include('home.crafting._recipe_reward_entry', ['reward' => $item])
@endforeach
@endforeach