@if(session('success'))
{{ session('success') }}
@endif @if ($errors->any())
@foreach ($errors->all() as $error)

{{ $error }}

@endforeach
@endif
{{ __('Reset') }}
@forelse($rows as $row) @empty @endforelse
{{ __('Picture') }} {{ __('Name') }} {{ __('Category') }} {{ __('Tags') }} {{ __('Visibility') }} {{ __('Order') }} {{ __('Created') }} {{ __('Actions') }}
@if($row->media->first()) {{ $row->name }} @else
@endif
{{ $row->name }}
{{ $row->helpCategory->name ?? '—' }} {{ $row->tags ?? '—' }} @if($row->is_external) {{ __('External') }} @else {{ __('Internal') }} @endif {{ $row->sort }} {{ $row->created_at->format('Y-m-d') }}
{{ __('No help subjects found.') }}
@if(method_exists($rows, 'links'))
{{ $rows->appends(request()->query())->links() }}
@endif