@extends('app')
@section('javascript')
@endsection
@section('banner')
Crafting List
@endsection
@section('content')
@if(isset($incomplete_saved))
Your saved list was malformed! Please check the URL again.
@endif
@if(empty($list))
Your list is empty.
Visit the Recipe Book to add items.
Also, clicking on a DOH class icon (like
) on other pages will add that item to your crafting list.
@else
@if(isset($saved))
Saved list retrieved. @if(isset($flushed))Previous contents were removed.@endif
@endif
Delete All
@php
$teamcraftString = base64_encode(implode(';', array_map(function($listItem) {
return $listItem['item']->id . ',null,' . $listItem['amount'];
}, $list)));
@endphp
Export to Teamcraft
Craft These Items »
@endif
@endsection
@section('modals')
@endsection