mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
d198332d3c
Including testing to check permissions applied to listed references.
21 lines
485 B
PHP
21 lines
485 B
PHP
@extends('layouts.simple')
|
|
|
|
@section('body')
|
|
|
|
<div class="container small">
|
|
|
|
<div class="my-s">
|
|
@include('entities.breadcrumbs', ['crumbs' => [
|
|
$shelf,
|
|
$shelf->getUrl('/references') => [
|
|
'text' => trans('entities.references'),
|
|
'icon' => 'reference',
|
|
]
|
|
]])
|
|
</div>
|
|
|
|
@include('entities.references', ['references' => $references])
|
|
</div>
|
|
|
|
@stop
|