@can('update', $waste_collection)
<a class="actions__item zmdi zmdi-edit" href="{{ route('admin.waste-collections.edit', $waste_collection) }}" title="Edit">
<span>{{ __('Edit') }}</span>
</a>
@endcan
@can('view', $waste_collection)
<a class="actions__item zmdi zmdi-eye" href="{{ route('admin.waste-collections.show', $waste_collection) }}" title="View">
<span>{{ __('View') }}</span>
</a>
@endcan
@if (! request()->routeIs('admin.waste-collections.edit'))
@can('update', $waste_collection)
<a class="actions__item zmdi zmdi-edit" href="{{ route('admin.waste-collections.edit', $waste_collection) }}" title="Edit">
<span>{{ __('Edit') }}</span>
</a>
@endcan
@endif
@if (! request()->routeIs('admin.waste-collections.show'))
@can('view', $waste_collection)
<a class="actions__item zmdi zmdi-eye" href="{{ route('admin.waste-collections.show', $waste_collection) }}" title="View">
<span>{{ __('View') }}</span>
</a>
@endcan
@endif
Current
Expected