1 @extends('layouts.simple')
5 <div class="container">
8 @include('entities.breadcrumbs', ['crumbs' => [
10 $book->getUrl('/sort') => [
11 'text' => trans('entities.books_sort'),
17 <div class="grid left-focus gap-xl">
19 <div component="book-sort" class="card content-wrap auto-height">
20 <h1 class="list-heading">{{ trans('entities.books_sort') }}</h1>
21 <p class="text-muted">{{ trans('entities.books_sort_desc') }}</p>
23 <div refs="book-sort@sortContainer">
24 @include('books.parts.sort-box', ['book' => $book, 'bookChildren' => $bookChildren])
27 <form action="{{ $book->getUrl('/sort') }}" method="POST">
29 <input type="hidden" name="_method" value="PUT">
30 <input refs="book-sort@input" type="hidden" name="sort-tree">
31 <div class="list text-right">
32 <a href="{{ $book->getUrl() }}" class="button outline">{{ trans('common.cancel') }}</a>
33 <button class="button" type="submit">{{ trans('entities.books_sort_save') }}</button>
40 <main class="card content-wrap auto-height sticky-top-m">
41 <h2 class="list-heading">{{ trans('entities.books_sort_show_other') }}</h2>
42 <p class="text-muted">{{ trans('entities.books_sort_show_other_desc') }}</p>
44 @include('entities.selector', ['name' => 'books_list', 'selectorSize' => 'compact', 'entityTypes' => 'book', 'entityPermission' => 'update'])