@extends('home.layout')
@section('home-title')
Crafting
@endsection
@section('home-content')
{!! breadcrumbs(['Crafting' => 'crafting']) !!}
My Recipe Book
This is a list of recipes that you have unlocked, as well as automatically unlocked recipes.
Free Recipes
@if ($default->count())
@foreach ($default as $recipe)
@include('home.crafting._smaller_recipe_card', ['recipe' => $recipe])
@endforeach
@else
There are no free recipes.
@endif
Your Unlocked Recipes
@if (Auth::user()->recipes->count())
@foreach (Auth::user()->recipes as $recipe)
@include('home.crafting._smaller_recipe_card', ['recipe' => $recipe])
@endforeach
@else
You haven't unlocked any recipes!
@endif
@endsection
@section('scripts')
@endsection