permissions arranged
This commit is contained in:
parent
1b648a2598
commit
613da78834
@ -64,7 +64,9 @@
|
|||||||
<i class="fa fa-ellipsis-h text-muted"></i>
|
<i class="fa fa-ellipsis-h text-muted"></i>
|
||||||
</a>
|
</a>
|
||||||
<div class="dropdown-menu dropdown-menu-right dropdown-menu-arrow">
|
<div class="dropdown-menu dropdown-menu-right dropdown-menu-arrow">
|
||||||
<a class="dropdown-item" href="{{ route('accounts.edit', $item->id) }}">{{ trans('general.edit') }}</a>
|
@can('update-banking-accounts')
|
||||||
|
<a class="dropdown-item" href="{{ route('accounts.edit', $item->id) }}">{{ trans('general.edit') }}</a>
|
||||||
|
@endcan
|
||||||
@can('delete-banking-accounts')
|
@can('delete-banking-accounts')
|
||||||
<div class="dropdown-divider"></div>
|
<div class="dropdown-divider"></div>
|
||||||
{!! Form::deleteLink($item, 'accounts.destroy') !!}
|
{!! Form::deleteLink($item, 'accounts.destroy') !!}
|
||||||
|
@ -63,8 +63,10 @@
|
|||||||
</a>
|
</a>
|
||||||
<div class="dropdown-menu dropdown-menu-right dropdown-menu-arrow">
|
<div class="dropdown-menu dropdown-menu-right dropdown-menu-arrow">
|
||||||
<a class="dropdown-item" href="{{ route('transfers.show', $item->id) }}">{{ trans('general.show') }}</a>
|
<a class="dropdown-item" href="{{ route('transfers.show', $item->id) }}">{{ trans('general.show') }}</a>
|
||||||
<div class="dropdown-divider"></div>
|
@can('update-banking-transfers')
|
||||||
<a class="dropdown-item" href="{{ route('transfers.edit', $item->id) }}">{{ trans('general.edit') }}</a>
|
<div class="dropdown-divider"></div>
|
||||||
|
<a class="dropdown-item" href="{{ route('transfers.edit', $item->id) }}">{{ trans('general.edit') }}</a>
|
||||||
|
@endcan
|
||||||
@can('delete-banking-transfers')
|
@can('delete-banking-transfers')
|
||||||
<div class="dropdown-divider"></div>
|
<div class="dropdown-divider"></div>
|
||||||
{!! Form::deleteLink($item, 'transfers.destroy') !!}
|
{!! Form::deleteLink($item, 'transfers.destroy') !!}
|
||||||
|
@ -95,6 +95,7 @@
|
|||||||
|
|
||||||
@stack('edit_button_start')
|
@stack('edit_button_start')
|
||||||
@if (!$hideButtonEdit)
|
@if (!$hideButtonEdit)
|
||||||
|
@can($permissionUpdate)
|
||||||
@if ($checkButtonReconciled)
|
@if ($checkButtonReconciled)
|
||||||
@if (!$item->reconciled)
|
@if (!$item->reconciled)
|
||||||
<a class="dropdown-item" href="{{ route($routeButtonEdit, $item->id) }}">{{ trans('general.edit') }}</a>
|
<a class="dropdown-item" href="{{ route($routeButtonEdit, $item->id) }}">{{ trans('general.edit') }}</a>
|
||||||
@ -102,6 +103,7 @@
|
|||||||
@else
|
@else
|
||||||
<a class="dropdown-item" href="{{ route($routeButtonEdit, $item->id) }}">{{ trans('general.edit') }}</a>
|
<a class="dropdown-item" href="{{ route($routeButtonEdit, $item->id) }}">{{ trans('general.edit') }}</a>
|
||||||
@endif
|
@endif
|
||||||
|
@endcan
|
||||||
@endif
|
@endif
|
||||||
@stack('edit_button_end')
|
@stack('edit_button_end')
|
||||||
|
|
||||||
|
@ -88,8 +88,10 @@
|
|||||||
<a class="dropdown-item" href="{{ route('payments.show', $item->id) }}">{{ trans('general.show') }}</a>
|
<a class="dropdown-item" href="{{ route('payments.show', $item->id) }}">{{ trans('general.show') }}</a>
|
||||||
|
|
||||||
@if (!$item->reconciled)
|
@if (!$item->reconciled)
|
||||||
|
@can('update-purchases-payments')
|
||||||
<a class="dropdown-item" href="{{ route('payments.edit', $item->id) }}">{{ trans('general.edit') }}</a>
|
<a class="dropdown-item" href="{{ route('payments.edit', $item->id) }}">{{ trans('general.edit') }}</a>
|
||||||
<div class="dropdown-divider"></div>
|
<div class="dropdown-divider"></div>
|
||||||
|
@endcan
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
@if (empty($item->document_id))
|
@if (empty($item->document_id))
|
||||||
|
@ -79,7 +79,7 @@
|
|||||||
<div class="dropdown-menu dropdown-menu-right dropdown-menu-arrow">
|
<div class="dropdown-menu dropdown-menu-right dropdown-menu-arrow">
|
||||||
<a class="dropdown-item" href="{{ route('vendors.show', $item->id) }}">{{ trans('general.show') }}</a>
|
<a class="dropdown-item" href="{{ route('vendors.show', $item->id) }}">{{ trans('general.show') }}</a>
|
||||||
|
|
||||||
@can('create-purchases-vendors')
|
@can('update-purchases-vendors')
|
||||||
<a class="dropdown-item" href="{{ route('vendors.edit', $item->id) }}">{{ trans('general.edit') }}</a>
|
<a class="dropdown-item" href="{{ route('vendors.edit', $item->id) }}">{{ trans('general.edit') }}</a>
|
||||||
@endcan
|
@endcan
|
||||||
|
|
||||||
|
@ -87,7 +87,7 @@
|
|||||||
{{ trans('general.show') }}
|
{{ trans('general.show') }}
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
@can('create-sales-customers')
|
@can('update-sales-customers')
|
||||||
<a class="dropdown-item" href="{{ route('customers.edit', $item->id) }}">
|
<a class="dropdown-item" href="{{ route('customers.edit', $item->id) }}">
|
||||||
{{ trans('general.edit') }}
|
{{ trans('general.edit') }}
|
||||||
</a>
|
</a>
|
||||||
|
@ -88,8 +88,10 @@
|
|||||||
<a class="dropdown-item" href="{{ route('revenues.show', $item->id) }}">{{ trans('general.show') }}</a>
|
<a class="dropdown-item" href="{{ route('revenues.show', $item->id) }}">{{ trans('general.show') }}</a>
|
||||||
|
|
||||||
@if (!$item->reconciled)
|
@if (!$item->reconciled)
|
||||||
|
@can('update-sales-revenues')
|
||||||
<a class="dropdown-item" href="{{ route('revenues.edit', $item->id) }}">{{ trans('general.edit') }}</a>
|
<a class="dropdown-item" href="{{ route('revenues.edit', $item->id) }}">{{ trans('general.edit') }}</a>
|
||||||
<div class="dropdown-divider"></div>
|
<div class="dropdown-divider"></div>
|
||||||
|
@endcan
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
@if (empty($item->document_id))
|
@if (empty($item->document_id))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user