@if ($showSuccesNotification) @endif
@if ($showFailureNotification) @endif
@if (session('succes')) @endif
{{ __('All Categories') }}
@if (auth()->user()->can('create', App\Category::class)) +  {{ __('New Category') }} @endif

{{ __('Show') }}  

  {{ __('entries') }}

{{ __('ID') }} {{ __('Name') }} {{ __('Email') }} {{ __('Creation Date') }} @can('manage-items', App\User::class) {{ __('Action') }} @endcan @foreach ($categories as $category) {{ $category->id }} {{ $category->name }} {{ $category->description }} {{ $category->created_at }} @can('manage-items', App\User::class) @if (auth()->user()->can('update', $category) || auth()->user()->can('delete', $category)) @can('update', $category) @endcan @can('delete', $category) @endcan @endif @endcan @endforeach
{{ $categories->links() }}