2017-08-26 08:24:55 -04:00
|
|
|
@extends('simple-layout')
|
2015-09-06 09:35:53 -04:00
|
|
|
|
2017-08-26 08:24:55 -04:00
|
|
|
@section('body')
|
2016-12-03 13:35:40 -05:00
|
|
|
|
2018-05-28 05:33:38 -04:00
|
|
|
<div class="container">
|
2015-09-06 09:35:53 -04:00
|
|
|
|
2019-02-17 12:52:42 -05:00
|
|
|
<div class="my-s">
|
2019-01-31 15:37:12 -05:00
|
|
|
@include('partials.breadcrumbs', ['crumbs' => [
|
|
|
|
$book,
|
2019-02-17 06:44:02 -05:00
|
|
|
$book->getUrl('/sort') => [
|
|
|
|
'text' => trans('entities.books_sort'),
|
|
|
|
'icon' => 'sort',
|
|
|
|
]
|
2019-01-31 15:37:12 -05:00
|
|
|
]])
|
|
|
|
</div>
|
2015-09-06 09:35:53 -04:00
|
|
|
|
2019-03-30 10:27:00 -04:00
|
|
|
<div class="grid left-focus gap-xl">
|
2019-01-31 15:37:12 -05:00
|
|
|
<div>
|
2019-06-06 08:09:58 -04:00
|
|
|
<div book-sort class="card content-wrap">
|
2019-04-06 11:56:50 -04:00
|
|
|
<h1 class="list-heading mb-l">{{ trans('entities.books_sort') }}</h1>
|
2019-06-06 08:09:58 -04:00
|
|
|
<div book-sort-boxes>
|
2019-02-17 06:44:02 -05:00
|
|
|
@include('books.sort-box', ['book' => $book, 'bookChildren' => $bookChildren])
|
2017-08-26 08:24:55 -04:00
|
|
|
</div>
|
2019-01-31 15:37:12 -05:00
|
|
|
|
|
|
|
<form action="{{ $book->getUrl('/sort') }}" method="POST">
|
|
|
|
{!! csrf_field() !!}
|
|
|
|
<input type="hidden" name="_method" value="PUT">
|
2019-06-06 08:09:58 -04:00
|
|
|
<input book-sort-input type="hidden" name="sort-tree">
|
2019-01-31 15:37:12 -05:00
|
|
|
<div class="list text-right">
|
|
|
|
<a href="{{ $book->getUrl() }}" class="button outline">{{ trans('common.cancel') }}</a>
|
2019-08-25 07:40:04 -04:00
|
|
|
<button class="button" type="submit">{{ trans('entities.books_sort_save') }}</button>
|
2019-01-31 15:37:12 -05:00
|
|
|
</div>
|
|
|
|
</form>
|
2017-08-26 08:24:55 -04:00
|
|
|
</div>
|
2015-09-06 09:35:53 -04:00
|
|
|
</div>
|
2019-01-31 15:37:12 -05:00
|
|
|
|
|
|
|
<div>
|
2019-08-25 10:44:51 -04:00
|
|
|
<main class="card content-wrap">
|
2019-04-06 11:56:50 -04:00
|
|
|
<h2 class="list-heading mb-m">{{ trans('entities.books_sort_show_other') }}</h2>
|
|
|
|
|
|
|
|
@include('components.entity-selector', ['name' => 'books_list', 'selectorSize' => 'compact', 'entityTypes' => 'book', 'entityPermission' => 'update', 'showAdd' => true])
|
|
|
|
|
2019-08-25 10:44:51 -04:00
|
|
|
</main>
|
2017-08-26 08:24:55 -04:00
|
|
|
</div>
|
2015-09-06 09:35:53 -04:00
|
|
|
</div>
|
2019-01-31 15:37:12 -05:00
|
|
|
|
2015-09-06 09:35:53 -04:00
|
|
|
</div>
|
|
|
|
|
2018-03-17 11:20:15 -04:00
|
|
|
@stop
|