2016-08-14 19:29:35 +08:00
|
|
|
<form action="{{ $model->getUrl('/permissions') }}" method="POST">
|
2016-02-28 18:49:41 +08:00
|
|
|
{!! csrf_field() !!}
|
|
|
|
<input type="hidden" name="_method" value="PUT">
|
|
|
|
|
2016-12-03 21:31:54 +08:00
|
|
|
<p>{{ trans('entities.permissions_intro') }}</p>
|
2016-03-31 03:15:44 +08:00
|
|
|
|
2016-02-28 18:49:41 +08:00
|
|
|
<div class="form-group">
|
2016-12-03 21:31:54 +08:00
|
|
|
@include('form/checkbox', ['name' => 'restricted', 'label' => trans('entities.permissions_enable')])
|
2016-02-28 18:49:41 +08:00
|
|
|
</div>
|
|
|
|
|
2019-02-02 23:49:57 +08:00
|
|
|
{{--TODO - Add global and role "Select All" options--}}
|
|
|
|
|
2016-02-28 18:49:41 +08:00
|
|
|
<table class="table">
|
|
|
|
<tr>
|
2016-12-03 21:31:54 +08:00
|
|
|
<th>{{ trans('common.role') }}</th>
|
|
|
|
<th @if($model->isA('page')) colspan="3" @else colspan="4" @endif>{{ trans('common.actions') }}</th>
|
2016-02-28 18:49:41 +08:00
|
|
|
</tr>
|
|
|
|
@foreach($roles as $role)
|
|
|
|
<tr>
|
|
|
|
<td>{{ $role->display_name }}</td>
|
2016-12-03 21:31:54 +08:00
|
|
|
<td>@include('form/restriction-checkbox', ['name'=>'restrictions', 'label' => trans('common.view'), 'action' => 'view'])</td>
|
2016-02-28 18:49:41 +08:00
|
|
|
@if(!$model->isA('page'))
|
2016-12-03 21:31:54 +08:00
|
|
|
<td>@include('form/restriction-checkbox', ['name'=>'restrictions', 'label' => trans('common.create'), 'action' => 'create'])</td>
|
2016-02-28 18:49:41 +08:00
|
|
|
@endif
|
2016-12-03 21:31:54 +08:00
|
|
|
<td>@include('form/restriction-checkbox', ['name'=>'restrictions', 'label' => trans('common.update'), 'action' => 'update'])</td>
|
|
|
|
<td>@include('form/restriction-checkbox', ['name'=>'restrictions', 'label' => trans('common.delete'), 'action' => 'delete'])</td>
|
2016-02-28 18:49:41 +08:00
|
|
|
</tr>
|
|
|
|
@endforeach
|
|
|
|
</table>
|
|
|
|
|
2017-08-26 20:24:55 +08:00
|
|
|
<div class="text-right">
|
|
|
|
<a href="{{ $model->getUrl() }}" class="button outline">{{ trans('common.cancel') }}</a>
|
2019-02-01 04:37:12 +08:00
|
|
|
<button type="submit" class="button primary">{{ trans('entities.permissions_save') }}</button>
|
2017-08-26 20:24:55 +08:00
|
|
|
</div>
|
2016-02-28 18:49:41 +08:00
|
|
|
</form>
|