2021-08-22 08:15:58 -04:00
|
|
|
@extends('layouts.simple')
|
2019-02-03 08:45:45 -05:00
|
|
|
|
|
|
|
@section('body')
|
|
|
|
|
|
|
|
<div class="container small">
|
|
|
|
|
2019-02-17 12:52:42 -05:00
|
|
|
<div class="my-s">
|
2021-08-22 08:15:58 -04:00
|
|
|
@include('entities.breadcrumbs', ['crumbs' => [
|
2019-02-03 08:45:45 -05:00
|
|
|
$shelf,
|
2019-02-17 12:52:42 -05:00
|
|
|
$shelf->getUrl('/permissions') => [
|
|
|
|
'text' => trans('entities.shelves_permissions'),
|
|
|
|
'icon' => 'lock',
|
|
|
|
]
|
2019-02-03 08:45:45 -05:00
|
|
|
]])
|
|
|
|
</div>
|
|
|
|
|
2021-08-28 10:44:44 -04:00
|
|
|
<div class="card content-wrap auto-height">
|
2019-02-03 08:45:45 -05:00
|
|
|
<h1 class="list-heading">{{ trans('entities.shelves_permissions') }}</h1>
|
|
|
|
@include('form.entity-permissions', ['model' => $shelf])
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="card content-wrap auto-height">
|
|
|
|
<h2 class="list-heading">{{ trans('entities.shelves_copy_permissions_to_books') }}</h2>
|
|
|
|
<p>{{ trans('entities.shelves_copy_permissions_explain') }}</p>
|
|
|
|
<form action="{{ $shelf->getUrl('/copy-permissions') }}" method="post" class="text-right">
|
|
|
|
{{ csrf_field() }}
|
|
|
|
<button class="button">{{ trans('entities.shelves_copy_permissions') }}</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
@stop
|