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">
20 <h1 class="list-heading mb-l">{{ trans('entities.books_sort') }}</h1>
21 <div refs="book-sort@sortContainer">
22 @include('books.parts.sort-box', ['book' => $book, 'bookChildren' => $bookChildren])
25 <form action="{{ $book->getUrl('/sort') }}" method="POST">
27 <input type="hidden" name="_method" value="PUT">
28 <input refs="book-sort@input" type="hidden" name="sort-tree">
29 <div class="list text-right">
30 <a href="{{ $book->getUrl() }}" class="button outline">{{ trans('common.cancel') }}</a>
31 <button class="button" type="submit">{{ trans('entities.books_sort_save') }}</button>
38 <main class="card content-wrap">
39 <h2 class="list-heading mb-m">{{ trans('entities.books_sort_show_other') }}</h2>
41 @include('entities.selector', ['name' => 'books_list', 'selectorSize' => 'compact', 'entityTypes' => 'book', 'entityPermission' => 'update', 'showAdd' => true])