@extends('admin.layout') @section('admin-title') Recipes @endsection @section('admin-content') {!! breadcrumbs(['Admin Panel' => 'admin', 'Recipes' => 'admin/data/recipes']) !!}

Recipes

This is a list of recipes in the game that can be used to craft items.

Create New Recipe
{!! Form::open(['method' => 'GET', 'class' => 'form-inline justify-content-end']) !!}
{!! Form::text('name', Request::get('name'), ['class' => 'form-control', 'placeholder' => 'Name']) !!}
{!! Form::submit('Search', ['class' => 'btn btn-primary']) !!}
{!! Form::close() !!}
@if (!count($recipes))

No recipes found.

@else {!! $recipes->render() !!} @foreach ($recipes as $recipe) @endforeach
Name
{{ $recipe->name }} Edit
{!! $recipes->render() !!} @endif @endsection @section('scripts') @parent @endsection