{{ Form::open(['url' => 'roles', 'method' => 'post','id'=>'rolesave']) }}
| {{ __('Module') }} | {{ __('Permissions') }} | |
|---|---|---|
|
@if (in_array('view ' . $module, (array) $permissions))
@if ($key = array_search('view ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck staff_checkall isscheck_' . str_replace(' ', '', str_replace('&', '', $module)), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'View', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('add ' . $module, (array) $permissions))
@if ($key = array_search('add ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck staff_checkall isscheck_' . str_replace(' ', '', str_replace('&', '', $module)), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Add', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('move ' . $module, (array) $permissions))
@if ($key = array_search('move ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck staff_checkall isscheck_' . str_replace(' ', '', str_replace('&', '', $module)), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Move', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('manage ' . $module, (array) $permissions))
@if ($key = array_search('manage ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck staff_checkall isscheck_' . str_replace(' ', '', str_replace('&', '', $module)), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Manage', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('create ' . $module, (array) $permissions))
@if ($key = array_search('create ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck staff_checkall isscheck_' . str_replace(' ', '', str_replace('&', '', $module)), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Create', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('edit ' . $module, (array) $permissions))
@if ($key = array_search('edit ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck staff_checkall isscheck_' . str_replace(' ', '', str_replace('&', '', $module)), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Edit', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('delete ' . $module, (array) $permissions))
@if ($key = array_search('delete ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck staff_checkall isscheck_' . str_replace(' ', '', str_replace('&', '', $module)), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Delete', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('show ' . $module, (array) $permissions))
@if ($key = array_search('show ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck staff_checkall isscheck_' . str_replace(' ', '', str_replace('&', '', $module)), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Show', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('send ' . $module, (array) $permissions))
@if ($key = array_search('send ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck staff_checkall isscheck_' . str_replace(' ', '', str_replace('&', '', $module)), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Send', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('create payment ' . $module, (array) $permissions))
@if ($key = array_search('create payment ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck staff_checkall isscheck_' . str_replace(' ', '', str_replace('&', '', $module)), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Create Payment', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('delete payment ' . $module, (array) $permissions))
@if ($key = array_search('delete payment ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck staff_checkall isscheck_' . str_replace(' ', '', str_replace('&', '', $module)), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Delete Payment', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('income ' . $module, (array) $permissions))
@if ($key = array_search('income ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck staff_checkall isscheck_' . str_replace(' ', '', str_replace('&', '', $module)), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Income', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('expense ' . $module, (array) $permissions))
@if ($key = array_search('expense ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck staff_checkall isscheck_' . str_replace(' ', '', str_replace('&', '', $module)), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Expense', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('income vs expense ' . $module, (array) $permissions))
@if ($key = array_search('income vs expense ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck staff_checkall isscheck_' . str_replace(' ', '', str_replace('&', '', $module)), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Income VS Expense', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('loss & profit ' . $module, (array) $permissions))
@if ($key = array_search('loss & profit ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck staff_checkall isscheck_' . str_replace(' ', '', str_replace('&', '', $module)), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Loss & Profit', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('tax ' . $module, (array) $permissions))
@if ($key = array_search('tax ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck staff_checkall isscheck_' . str_replace(' ', '', str_replace('&', '', $module)), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Tax', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('invoice ' . $module, (array) $permissions))
@if ($key = array_search('invoice ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck staff_checkall isscheck_' . str_replace(' ', '', str_replace('&', '', $module)), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Invoice', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('bill ' . $module, (array) $permissions))
@if ($key = array_search('bill ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck staff_checkall isscheck_' . str_replace(' ', '', str_replace('&', '', $module)), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Bill', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('duplicate ' . $module, (array) $permissions))
@if ($key = array_search('duplicate ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck staff_checkall isscheck_' . str_replace(' ', '', str_replace('&', '', $module)), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Duplicate', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('balance sheet ' . $module, (array) $permissions))
@if ($key = array_search('balance sheet ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck staff_checkall isscheck_' . str_replace(' ', '', str_replace('&', '', $module)), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Balance Sheet', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('ledger ' . $module, (array) $permissions))
@if ($key = array_search('ledger ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck staff_checkall isscheck_' . str_replace(' ', '', str_replace('&', '', $module)), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Ledger', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('trial balance ' . $module, (array) $permissions))
@if ($key = array_search('trial balance ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck staff_checkall isscheck_' . str_replace(' ', '', str_replace('&', '', $module)), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Trial Balance', ['class' => 'custom-control-label']) }}
@endif
@endif
|
| {{ __('Module') }} | {{ __('Permissions') }} | |
|---|---|---|
|
@if (in_array('view ' . $module, (array) $permissions))
@if ($key = array_search('view ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck crm_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'View', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('add ' . $module, (array) $permissions))
@if ($key = array_search('add ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck crm_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Add', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('move ' . $module, (array) $permissions))
@if ($key = array_search('move ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck crm_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Move', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('manage ' . $module, (array) $permissions))
@if ($key = array_search('manage ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck crm_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Manage', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('create ' . $module, (array) $permissions))
@if ($key = array_search('create ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck crm_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Create', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('edit ' . $module, (array) $permissions))
@if ($key = array_search('edit ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck crm_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Edit', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('delete ' . $module, (array) $permissions))
@if ($key = array_search('delete ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck crm_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Delete', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('show ' . $module, (array) $permissions))
@if ($key = array_search('show ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck crm_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Show', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('send ' . $module, (array) $permissions))
@if ($key = array_search('send ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck crm_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Send', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('create payment ' . $module, (array) $permissions))
@if ($key = array_search('create payment ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck crm_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Create Payment', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('delete payment ' . $module, (array) $permissions))
@if ($key = array_search('delete payment ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck crm_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Delete Payment', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('income ' . $module, (array) $permissions))
@if ($key = array_search('income ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck crm_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Income', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('expense ' . $module, (array) $permissions))
@if ($key = array_search('expense ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck crm_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Expense', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('income vs expense ' . $module, (array) $permissions))
@if ($key = array_search('income vs expense ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck crm_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Income VS Expense', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('loss & profit ' . $module, (array) $permissions))
@if ($key = array_search('loss & profit ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck crm_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Loss & Profit', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('tax ' . $module, (array) $permissions))
@if ($key = array_search('tax ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck crm_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Tax', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('invoice ' . $module, (array) $permissions))
@if ($key = array_search('invoice ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck crm_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Invoice', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('bill ' . $module, (array) $permissions))
@if ($key = array_search('bill ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck crm_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Bill', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('duplicate ' . $module, (array) $permissions))
@if ($key = array_search('duplicate ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck crm_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Duplicate', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('balance sheet ' . $module, (array) $permissions))
@if ($key = array_search('balance sheet ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck crm_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Balance Sheet', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('ledger ' . $module, (array) $permissions))
@if ($key = array_search('ledger ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck crm_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Ledger', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('trial balance ' . $module, (array) $permissions))
@if ($key = array_search('trial balance ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck crm_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Trial Balance', ['class' => 'custom-control-label']) }}
@endif
@endif
|
| {{ __('Module') }} | {{ __('Permissions') }} | |
|---|---|---|
|
@if (in_array('manage ' . $module, (array) $permissions))
@if ($key = array_search('manage ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck project_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Manage', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('view ' . $module, (array) $permissions))
@if ($key = array_search('view ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck project_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'View', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('add ' . $module, (array) $permissions))
@if ($key = array_search('add ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck project_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Add', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('export ' . $module, (array) $permissions))
@if ($key = array_search('export ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck project_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Export ', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('save ' . $module, (array) $permissions))
@if ($key = array_search('save ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck project_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Save ', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('move ' . $module, (array) $permissions))
@if ($key = array_search('move ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck project_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Move', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('schedule ' . $module, (array) $permissions))
@if ($key = array_search('schedule ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck project_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Schedule', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('lookahead ' . $module, (array) $permissions))
@if ($key = array_search('lookahead ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck project_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'View', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('create ' . $module, (array) $permissions))
@if ($key = array_search('create ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck project_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Create', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('invite ' . $module, (array) $permissions))
@if ($key = array_search('invite ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, [
'class' =>'form-check-input isscheck project_checkall isscheck_' .
str_replace(' ', '', $module),
'id' => 'permission' . $key,
]) }}
{{ Form::label('permission' . $key, 'Invite', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('email ' . $module, (array) $permissions))
@if ($key = array_search('email ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck project_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Email', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('download ' . $module, (array) $permissions))
@if ($key = array_search('download ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck project_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Export', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('edit ' . $module, (array) $permissions))
@if ($key = array_search('edit ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck project_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Edit', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('delete ' . $module, (array) $permissions))
@if ($key = array_search('delete ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck project_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Delete', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('show ' . $module, (array) $permissions))
@if ($key = array_search('show ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck project_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Show', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('send ' . $module, (array) $permissions))
@if ($key = array_search('send ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck project_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Send', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('create payment ' . $module, (array) $permissions))
@if ($key = array_search('create payment ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck project_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Create Payment', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('delete payment ' . $module, (array) $permissions))
@if ($key = array_search('delete payment ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck project_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Delete Payment', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('income ' . $module, (array) $permissions))
@if ($key = array_search('income ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck project_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Income', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('expense ' . $module, (array) $permissions))
@if ($key = array_search('expense ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck project_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Expense', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('income vs expense ' . $module, (array) $permissions))
@if ($key = array_search('income vs expense ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck project_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Income VS Expense', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('loss & profit ' . $module, (array) $permissions))
@if ($key = array_search('loss & profit ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck project_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Loss & Profit', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('tax ' . $module, (array) $permissions))
@if ($key = array_search('tax ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck project_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Tax', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('invoice ' . $module, (array) $permissions))
@if ($key = array_search('invoice ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck project_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Invoice', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('bill ' . $module, (array) $permissions))
@if ($key = array_search('bill ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck project_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Bill', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('duplicate ' . $module, (array) $permissions))
@if ($key = array_search('duplicate ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck project_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Duplicate', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('balance sheet ' . $module, (array) $permissions))
@if ($key = array_search('balance sheet ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck project_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Balance Sheet', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('ledger ' . $module, (array) $permissions))
@if ($key = array_search('ledger ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck project_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Ledger', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('trial balance ' . $module, (array) $permissions))
@if ($key = array_search('trial balance ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck project_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Trial Balance', ['class' => 'custom-control-label']) }}
@endif
@endif
|
| {{ __('Module') }} | {{ __('Permissions') }} | |
|---|---|---|
|
@if (in_array('view ' . $module, (array) $permissions))
@if ($key = array_search('view ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck diary_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'View', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('add ' . $module, (array) $permissions))
@if ($key = array_search('add ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck diary_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Add', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('manage ' . $module, (array) $permissions))
@if ($key = array_search('manage ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, [
'class' =>
'form-check-input isscheck
diary_checkall isscheck_' .
str_replace(' ', '', $module),
'id' => 'permission' . $key,
]) }}
{{ Form::label('permission' . $key, 'View', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('create ' . $module, (array) $permissions))
@if ($key = array_search('create ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck diary_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Create', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('edit ' . $module, (array) $permissions))
@if ($key = array_search('edit ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck diary_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Edit', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('invite ' . $module, (array) $permissions))
@if ($key = array_search('invite ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, [
'class' =>
'form-check-input isscheck
diary_checkall isscheck_' .
str_replace(' ', '', $module),
'id' => 'permission' . $key,
]) }}
{{ Form::label('permission' . $key, 'Invite', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('show ' . $module, (array) $permissions))
@if ($key = array_search('show ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck diary_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Show', ['class' => 'custom-control-label']) }}
@endif
@endif
|
| {{ __('Module') }} | {{ __('Permissions') }} | |
|---|---|---|
|
@if (in_array('view ' . $module, (array) $permissions))
@if ($key = array_search('view ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck hrm_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'View', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('add ' . $module, (array) $permissions))
@if ($key = array_search('add ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck hrm_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Add', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('move ' . $module, (array) $permissions))
@if ($key = array_search('move ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck hrm_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Move', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('manage ' . $module, (array) $permissions))
@if ($key = array_search('manage ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck hrm_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Manage', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('create ' . $module, (array) $permissions))
@if ($key = array_search('create ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck hrm_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Create', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('edit ' . $module, (array) $permissions))
@if ($key = array_search('edit ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck hrm_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Edit', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('delete ' . $module, (array) $permissions))
@if ($key = array_search('delete ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck hrm_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Delete', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('show ' . $module, (array) $permissions))
@if ($key = array_search('show ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck hrm_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Show', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('send ' . $module, (array) $permissions))
@if ($key = array_search('send ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck hrm_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Send', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('create payment ' . $module, (array) $permissions))
@if ($key = array_search('create payment ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck hrm_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Create Payment', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('delete payment ' . $module, (array) $permissions))
@if ($key = array_search('delete payment ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck hrm_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Delete Payment', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('income ' . $module, (array) $permissions))
@if ($key = array_search('income ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck hrm_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Income', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('expense ' . $module, (array) $permissions))
@if ($key = array_search('expense ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck hrm_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Expense', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('income vs expense ' . $module, (array) $permissions))
@if ($key = array_search('income vs expense ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck hrm_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Income VS Expense', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('loss & profit ' . $module, (array) $permissions))
@if ($key = array_search('loss & profit ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck hrm_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Loss & Profit', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('tax ' . $module, (array) $permissions))
@if ($key = array_search('tax ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck hrm_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Tax', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('invoice ' . $module, (array) $permissions))
@if ($key = array_search('invoice ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck hrm_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Invoice', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('bill ' . $module, (array) $permissions))
@if ($key = array_search('bill ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck hrm_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Bill', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('duplicate ' . $module, (array) $permissions))
@if ($key = array_search('duplicate ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck hrm_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Duplicate', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('balance sheet ' . $module, (array) $permissions))
@if ($key = array_search('balance sheet ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck hrm_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Balance Sheet', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('ledger ' . $module, (array) $permissions))
@if ($key = array_search('ledger ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck hrm_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Ledger', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('trial balance ' . $module, (array) $permissions))
@if ($key = array_search('trial balance ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck hrm_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Trial Balance', ['class' => 'custom-control-label']) }}
@endif
@endif
|
| {{ __('Module') }} | {{ __('Permissions') }} | |
|---|---|---|
|
@if (in_array('view ' . $module, (array) $permissions))
@if ($key = array_search('view ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck account_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'View', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('add ' . $module, (array) $permissions))
@if ($key = array_search('add ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck account_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Add', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('move ' . $module, (array) $permissions))
@if ($key = array_search('move ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck account_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Move', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('manage ' . $module, (array) $permissions))
@if ($key = array_search('manage ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck account_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Manage', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('create ' . $module, (array) $permissions))
@if ($key = array_search('create ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck account_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Create', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('edit ' . $module, (array) $permissions))
@if ($key = array_search('edit ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck account_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Edit', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('delete ' . $module, (array) $permissions))
@if ($key = array_search('delete ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck account_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Delete', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('show ' . $module, (array) $permissions))
@if ($key = array_search('show ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck account_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Show', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('send ' . $module, (array) $permissions))
@if ($key = array_search('send ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck account_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Send', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('create payment ' . $module, (array) $permissions))
@if ($key = array_search('create payment ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck account_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Create Payment', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('delete payment ' . $module, (array) $permissions))
@if ($key = array_search('delete payment ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck account_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Delete Payment', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('income ' . $module, (array) $permissions))
@if ($key = array_search('income ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck account_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Income', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('expense ' . $module, (array) $permissions))
@if ($key = array_search('expense ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck account_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Expense', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('income vs expense ' . $module, (array) $permissions))
@if ($key = array_search('income vs expense ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck account_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Income VS Expense', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('loss & profit ' . $module, (array) $permissions))
@if ($key = array_search('loss & profit ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck account_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Loss & Profit', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('tax ' . $module, (array) $permissions))
@if ($key = array_search('tax ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck account_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Tax', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('invoice ' . $module, (array) $permissions))
@if ($key = array_search('invoice ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck account_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Invoice', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('bill ' . $module, (array) $permissions))
@if ($key = array_search('bill ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck account_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Bill', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('duplicate ' . $module, (array) $permissions))
@if ($key = array_search('duplicate ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck account_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Duplicate', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('balance sheet ' . $module, (array) $permissions))
@if ($key = array_search('balance sheet ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck account_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Balance Sheet', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('ledger ' . $module, (array) $permissions))
@if ($key = array_search('ledger ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck account_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Ledger', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('trial balance ' . $module, (array) $permissions))
@if ($key = array_search('trial balance ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck account_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Trial Balance', ['class' => 'custom-control-label']) }}
@endif
@endif
|
| {{ __('Module') }} | {{ __('Permissions') }} | |
|---|---|---|
|
@if (in_array('view ' . $module, (array) $permissions))
@if ($key = array_search('view ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck consultant_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'View', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('add ' . $module, (array) $permissions))
@if ($key = array_search('add ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck consultant_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Add', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('manage ' . $module, (array) $permissions))
@if ($key = array_search('manage ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, [
'class' =>
'form-check-input isscheck
consultant_checkall isscheck_' .
str_replace(' ', '', $module),
'id' => 'permission' . $key,
]) }}
{{ Form::label('permission' . $key, 'View', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('create ' . $module, (array) $permissions))
@if ($key = array_search('create ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck consultant_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Create', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('edit ' . $module, (array) $permissions))
@if ($key = array_search('edit ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck consultant_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Edit', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('invite ' . $module, (array) $permissions))
@if ($key = array_search('invite ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, [
'class' =>
'form-check-input isscheck
consultant_checkall isscheck_' .
str_replace(' ', '', $module),
'id' => 'permission' . $key,
]) }}
{{ Form::label('permission' . $key, 'Invite', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('show ' . $module, (array) $permissions))
@if ($key = array_search('show ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, ['class' => 'form-check-input isscheck consultant_checkall isscheck_' . str_replace(' ', '', $module), 'id' => 'permission' . $key]) }}
{{ Form::label('permission' . $key, 'Show', ['class' => 'custom-control-label']) }}
@endif
@endif
|
| {{ __('Module') }} | {{ __('Permissions') }} | |
|---|---|---|
|
@if (in_array('view ' . $module, (array) $permissions))
@if ($key = array_search('view ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, [
'class' =>
'form-check-input isscheck
sub_contractor_checkall isscheck_' .
str_replace(' ', '', $module),
'id' => 'permission' . $key,
]) }}
{{ Form::label('permission' . $key, 'View', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('add ' . $module, (array) $permissions))
@if ($key = array_search('add ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, [
'class' =>
'form-check-input isscheck
sub_contractor_checkall isscheck_' .
str_replace(' ', '', $module),
'id' => 'permission' . $key,
]) }}
{{ Form::label('permission' . $key, 'Add', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('manage ' . $module, (array) $permissions))
@if ($key = array_search('manage ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, [
'class' =>
'form-check-input isscheck
sub_contractor_checkall isscheck_' .
str_replace(' ', '', $module),
'id' => 'permission' . $key,
]) }}
{{ Form::label('permission' . $key, 'View', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('create ' . $module, (array) $permissions))
@if ($key = array_search('create ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, [
'class' =>
'form-check-input isscheck
sub_contractor_checkall isscheck_' .
str_replace(' ', '', $module),
'id' => 'permission' . $key,
]) }}
{{ Form::label('permission' . $key, 'Create', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('edit ' . $module, (array) $permissions))
@if ($key = array_search('edit ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, [
'class' =>
'form-check-input isscheck
sub_contractor_checkall isscheck_' .
str_replace(' ', '', $module),
'id' => 'permission' . $key,
]) }}
{{ Form::label('permission' . $key, 'Edit', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('invite ' . $module, (array) $permissions))
@if ($key = array_search('invite ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, [
'class' =>
'form-check-input isschec
sub_contractor_checkall isscheck_' .
str_replace(' ', '', $module),
'id' => 'permission' . $key,
]) }}
{{ Form::label('permission' . $key, 'Invite', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('show ' . $module, (array) $permissions))
@if ($key = array_search('show ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, [
'class' =>
'form-check-input isscheck
sub_contractor_checkall isscheck_' .
str_replace(' ', '', $module),
'id' => 'permission' . $key,
]) }}
{{ Form::label('permission' . $key, 'Show', ['class' => 'custom-control-label']) }}
@endif
@endif
|
| {{ __('Module') }} | {{ __('Permissions') }} | |
|---|---|---|
|
@if (in_array('view ' . $module, (array) $permissions))
@if ($key = array_search('view ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, [
'class' =>
'form-check-input isscheck context_management_checkall isscheck_' .
str_replace(' ', '', $module),
'id' => 'permission' . $key,
]) }}
{{ Form::label('permission' . $key, 'View', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('add ' . $module, (array) $permissions))
@if ($key = array_search('add ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, [
'class' =>
'form-check-input isscheck context_management_checkall isscheck_' .
str_replace(' ', '', $module),
'id' => 'permission' . $key,
]) }}
{{ Form::label('permission' . $key, 'Add', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('manage ' . $module, (array) $permissions))
@if ($key = array_search('manage ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, [
'class' =>
'form-check-input isscheck context_management_checkall isscheck_' .
str_replace(' ', '', $module),
'id' => 'permission' . $key,
]) }}
{{ Form::label('permission' . $key, 'View', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('create ' . $module, (array) $permissions))
@if ($key = array_search('create ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, [
'class' =>
'form-check-input isscheck context_management_checkall isscheck_' .
str_replace(' ', '', $module),
'id' => 'permission' . $key,
]) }}
{{ Form::label('permission' . $key, 'Create', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('edit ' . $module, (array) $permissions))
@if ($key = array_search('edit ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, [
'class' =>
'form-check-input isscheck context_management_checkall isscheck_' .
str_replace(' ', '', $module),
'id' => 'permission' . $key,
]) }}
{{ Form::label('permission' . $key, 'Edit', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('invite ' . $module, (array) $permissions))
@if ($key = array_search('invite ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, [
'class' =>
'form-check-input isscheck context_management_checkall isscheck_' .
str_replace(' ', '', $module),
'id' => 'permission' . $key,
]) }}
{{ Form::label('permission' . $key, 'Invite', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('delete ' . $module, (array) $permissions))
@if ($key = array_search('delete ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, [
'class' =>
'form-check-input isscheck context_management_checkall isscheck_' .
str_replace(' ', '', $module),
'id' => 'permission' . $key,
]) }}
{{ Form::label('permission' . $key, 'Delete', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('show ' . $module, (array) $permissions))
@if ($key = array_search('show ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, [
'class' =>
'form-check-input isscheck context_management_checkall isscheck_' .
str_replace(' ', '', $module),
'id' => 'permission' . $key,
]) }}
{{ Form::label('permission' . $key, 'Show', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('import ' . $module, (array) $permissions))
@if ($key = array_search('import ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, [
'class' =>
'form-check-input isscheck context_management_checkall isscheck_' .
str_replace(' ', '', $module),
'id' => 'permission' . $key,
]) }}
{{ Form::label('permission' . $key, 'Import', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('export ' . $module, (array) $permissions))
@if ($key = array_search('export ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, [
'class' =>
'form-check-input isscheck context_management_checkall isscheck_' .
str_replace(' ', '', $module),
'id' => 'permission' . $key,
]) }}
{{ Form::label('permission' . $key, 'Export', ['class' => 'custom-control-label']) }}
@endif
@endif
|
| {{ __('Module') }} | {{ __('Permissions') }} | |
|---|---|---|
|
@if (in_array('view ' . $module, (array) $permissions))
@if ($key = array_search('view ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, [
'class' =>
'form-check-input isscheck tender_management_checkall isscheck_' .
str_replace(' ', '', $module),
'id' => 'permission' . $key,
]) }}
{{ Form::label('permission' . $key, 'View', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('add ' . $module, (array) $permissions))
@if ($key = array_search('add ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, [
'class' =>
'form-check-input isscheck tender_management_checkall isscheck_' .
str_replace(' ', '', $module),
'id' => 'permission' . $key,
]) }}
{{ Form::label('permission' . $key, 'Add', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('manage ' . $module, (array) $permissions))
@if ($key = array_search('manage ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, [
'class' =>
'form-check-input isscheck tender_management_checkall isscheck_' .
str_replace(' ', '', $module),
'id' => 'permission' . $key,
]) }}
{{ Form::label('permission' . $key, 'Manage', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('create ' . $module, (array) $permissions))
@if ($key = array_search('create ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, [
'class' =>
'form-check-input isscheck tender_management_checkall isscheck_' .
str_replace(' ', '', $module),
'id' => 'permission' . $key,
]) }}
{{ Form::label('permission' . $key, 'Create', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('edit ' . $module, (array) $permissions))
@if ($key = array_search('edit ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, [
'class' =>
'form-check-input isscheck tender_management_checkall isscheck_' .
str_replace(' ', '', $module),
'id' => 'permission' . $key,
]) }}
{{ Form::label('permission' . $key, 'Edit', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('invite ' . $module, (array) $permissions))
@if ($key = array_search('invite ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, [
'class' =>
'form-check-input isscheck tender_management_checkall isscheck_' .
str_replace(' ', '', $module),
'id' => 'permission' . $key,
]) }}
{{ Form::label('permission' . $key, 'Invite', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('delete ' . $module, (array) $permissions))
@if ($key = array_search('delete ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, [
'class' =>
'form-check-input isscheck tender_management_checkall isscheck_' .
str_replace(' ', '', $module),
'id' => 'permission' . $key,
]) }}
{{ Form::label('permission' . $key, 'Delete', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('show ' . $module, (array) $permissions))
@if ($key = array_search('show ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, [
'class' =>
'form-check-input isscheck tender_management_checkall isscheck_' .
str_replace(' ', '', $module),
'id' => 'permission' . $key,
]) }}
{{ Form::label('permission' . $key, 'Show', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('import ' . $module, (array) $permissions))
@if ($key = array_search('import ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, [
'class' =>
'form-check-input isscheck tender_management_checkall isscheck_' .
str_replace(' ', '', $module),
'id' => 'permission' . $key,
]) }}
{{ Form::label('permission' . $key, 'Import', ['class' => 'custom-control-label']) }}
@endif
@endif
@if (in_array('export ' . $module, (array) $permissions))
@if ($key = array_search('export ' . $module, $permissions))
{{ Form::checkbox('permissions[]', $key, false, [
'class' =>
'form-check-input isscheck tender_management_checkall isscheck_' .
str_replace(' ', '', $module),
'id' => 'permission' . $key,
]) }}
{{ Form::label('permission' . $key, 'Export', ['class' => 'custom-control-label']) }}
@endif
@endif
|