@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.
{!! 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() !!}
| Name |
|
@foreach ($recipes as $recipe)
|
{{ $recipe->name }}
|
Edit
|
@endforeach
{!! $recipes->render() !!}
@endif
@endsection
@section('scripts')
@parent
@endsection