@if (!$recipe)
Invalid recipe selected.
@else @if ($recipe->imageUrl)
@endif

Recipe Details Show


@if ($recipe->is_limited)
Requirements
@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
@if ($selected || $recipe->onlyCurrency) {{-- Check if sufficient ingredients have been selected? --}} {!! Form::open(['url' => 'crafting/craft/' . $recipe->id]) !!} @include('widgets._inventory_select', ['user' => Auth::user(), 'inventory' => $inventory, 'categories' => $categories, 'selected' => $selected, 'page' => $page])
{!! Form::submit('Craft', ['class' => 'btn btn-primary']) !!}
{!! Form::close() !!} @else
You do not have all of the required recipe ingredients.
@endif @endif @include('widgets._inventory_select_js')