2021-08-22 20:15:58 +08:00
|
|
|
@extends('layouts.simple')
|
2015-09-06 21:35:53 +08:00
|
|
|
|
2017-08-26 20:24:55 +08:00
|
|
|
@section('body')
|
2016-12-04 02:35:40 +08:00
|
|
|
|
2018-05-28 17:33:38 +08:00
|
|
|
<div class="container">
|
2015-09-06 21:35:53 +08:00
|
|
|
|
2019-02-18 01:52:42 +08:00
|
|
|
<div class="my-s">
|
2021-08-22 20:15:58 +08:00
|
|
|
@include('entities.breadcrumbs', ['crumbs' => [
|
2019-02-01 04:37:12 +08:00
|
|
|
$book,
|
2019-02-17 19:44:02 +08:00
|
|
|
$book->getUrl('/sort') => [
|
|
|
|
'text' => trans('entities.books_sort'),
|
|
|
|
'icon' => 'sort',
|
|
|
|
]
|
2019-02-01 04:37:12 +08:00
|
|
|
]])
|
|
|
|
</div>
|
2015-09-06 21:35:53 +08:00
|
|
|
|
2019-03-30 22:27:00 +08:00
|
|
|
<div class="grid left-focus gap-xl">
|
2019-02-01 04:37:12 +08:00
|
|
|
<div>
|
2023-01-27 19:16:17 +08:00
|
|
|
<div component="book-sort" class="card content-wrap auto-height">
|
|
|
|
<h1 class="list-heading">{{ trans('entities.books_sort') }}</h1>
|
|
|
|
<p class="text-muted">{{ trans('entities.books_sort_desc') }}</p>
|
|
|
|
|
2022-11-15 19:24:31 +08:00
|
|
|
<div refs="book-sort@sortContainer">
|
2021-08-22 20:15:58 +08:00
|
|
|
@include('books.parts.sort-box', ['book' => $book, 'bookChildren' => $bookChildren])
|
2017-08-26 20:24:55 +08:00
|
|
|
</div>
|
2019-02-01 04:37:12 +08:00
|
|
|
|
|
|
|
<form action="{{ $book->getUrl('/sort') }}" method="POST">
|
|
|
|
{!! csrf_field() !!}
|
|
|
|
<input type="hidden" name="_method" value="PUT">
|
2022-11-15 19:24:31 +08:00
|
|
|
<input refs="book-sort@input" type="hidden" name="sort-tree">
|
2019-02-01 04:37:12 +08:00
|
|
|
<div class="list text-right">
|
|
|
|
<a href="{{ $book->getUrl() }}" class="button outline">{{ trans('common.cancel') }}</a>
|
2019-08-25 19:40:04 +08:00
|
|
|
<button class="button" type="submit">{{ trans('entities.books_sort_save') }}</button>
|
2019-02-01 04:37:12 +08:00
|
|
|
</div>
|
|
|
|
</form>
|
2017-08-26 20:24:55 +08:00
|
|
|
</div>
|
2015-09-06 21:35:53 +08:00
|
|
|
</div>
|
2019-02-01 04:37:12 +08:00
|
|
|
|
|
|
|
<div>
|
2023-01-27 19:16:17 +08:00
|
|
|
<main class="card content-wrap auto-height sticky-top-m">
|
|
|
|
<h2 class="list-heading">{{ trans('entities.books_sort_show_other') }}</h2>
|
|
|
|
<p class="text-muted">{{ trans('entities.books_sort_show_other_desc') }}</p>
|
2019-04-06 23:56:50 +08:00
|
|
|
|
2021-08-22 20:15:58 +08:00
|
|
|
@include('entities.selector', ['name' => 'books_list', 'selectorSize' => 'compact', 'entityTypes' => 'book', 'entityPermission' => 'update', 'showAdd' => true])
|
2019-04-06 23:56:50 +08:00
|
|
|
|
2019-08-25 22:44:51 +08:00
|
|
|
</main>
|
2017-08-26 20:24:55 +08:00
|
|
|
</div>
|
2015-09-06 21:35:53 +08:00
|
|
|
</div>
|
2019-02-01 04:37:12 +08:00
|
|
|
|
2015-09-06 21:35:53 +08:00
|
|
|
</div>
|
|
|
|
|
2018-03-17 23:20:15 +08:00
|
|
|
@stop
|