2021-08-22 20:15:58 +08:00
|
|
|
@extends('layouts.simple')
|
2019-02-01 04:37:12 +08:00
|
|
|
|
|
|
|
@section('body')
|
|
|
|
|
|
|
|
<div class="container">
|
|
|
|
|
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-18 01:52:42 +08:00
|
|
|
$book->getUrl('/permissions') => [
|
|
|
|
'text' => trans('entities.books_permissions'),
|
|
|
|
'icon' => 'lock',
|
|
|
|
]
|
2019-02-01 04:37:12 +08:00
|
|
|
]])
|
|
|
|
</div>
|
|
|
|
|
2022-10-11 22:41:21 +08:00
|
|
|
<main class="card content-wrap auto-height">
|
|
|
|
@include('form.entity-permissions', ['model' => $book, 'title' => trans('entities.books_permissions')])
|
2019-08-25 22:44:51 +08:00
|
|
|
</main>
|
2019-02-01 04:37:12 +08:00
|
|
|
</div>
|
|
|
|
|
|
|
|
@stop
|