{{ __('Articles') }}
{{ __('Please review the list.') }}
@if (auth()->user()->can('create-articles')) {{ __('Add Article') }} {{ __('Article Categories') }} @endif
@if ($articles->isEmpty())

{{ __('There is no data to display') }}

@else
@foreach ($articles as $article) @endforeach
{{ __('Article') }} {{ __('Active') }} {{ __('Actions') }}
@if ($article->image) @endif
{{ $article->name }}
{{ $article->title }}
{{ $article->description }}
@if ($article->active) {{ __('Active') }} @else {{ __('Inactive') }} @endif @if (auth()->user()->can('update-articles')) {{ __('Edit') }}, {{ $article->name }} @endif @if (auth()->user()->can('delete-articles')) @endif
@if ($articles->hasPages())
{{ $articles->links() }}
@endif
@endif
@once @push('scripts') @endpush @endonce