{{__('Accounts List')}}
@if($search <> '')
@endif
@if(count($selectedElements) > 0) @endif
@can('accounts_create') @endcan
@if($elements->count()) @if($selectPage) @endif @foreach($elements as $element) @endforeach
ID {{__('Name')}} {{__('Description')}} {{__('Options')}}
@unless($selectAll)
{{__('You have selected')}} {{ $elements->count() }} {{__('items, would you like to select all')}} {{ $elements->total() }}?
@else
{{__('You have selected')}} {{ $elements->total() }} {{__('items')}}.
@endunless
{{ $element->id }} {{ $element->name }} {{ $element->description }} @can('accounts_options') @php $classes = (auth()->user()->current_account_id == $element->id ?? false) ? 'btn btn-xs btn-success' : 'btn btn-xs btn-outline-success'; $button_name = (auth()->user()->current_account_id == $element->id ?? false) ? ' Activa ' : 'Inactivo'; @endphp @can('accounts_show') {{__('Show')}} @endcan @can('accounts_edit') {{__('Edit')}} @endcan @can('accounts_delete') @if( auth()->user()->current_account_id != $element->id ) @endif @endcan @endcan
@else
{{__('No results for')}} {{ $search }}
@endif
@push('js-livewire-custom') @endpush