]>
BookStack Code Mirror - bookstack/blob - resources/views/form/restriction-checkbox.blade.php
projects
/
bookstack
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Converted breadcrumb-listing to new component system
[bookstack]
/
resources
/
views
/
form
/
restriction-checkbox.blade.php
1
{{--
2
$name
3
$label
4
$role
5
$action
6
$model?
7
--}}
8
@include('components.custom-checkbox', [
9
'name' => $name . '[' . $role->id . '][' . $action . ']',
10
'label' => $label,
11
'value' => 'true',
12
'checked' => isset($model) && $model->hasRestriction($role->id, $action)
13
])