{{ __('Blogs') }} {{ $rows->total() }}
| @foreach($sortedCategories as $category) {{ $category->name }} {{ $categoryCounts->get($category->id, 0) }} @endforeach @if(isset($categoryCounts['']) || isset($categoryCounts[null]) || isset($categoryCounts[0])) {{ __('بدون تصنيف') }} {{ $categoryCounts[''] ?? $categoryCounts[null] ?? $categoryCounts[0] ?? 0 }} @endif| # | {{__('Image')}} | {{__('Title')}} | {{__('Category')}} | {{__('Focus Keyword')}} | {{__('Status')}} | {{__('Created At')}} | {{__('Actions')}} |
|---|---|---|---|---|---|---|---|
| {{ $rows->total() - (($rows->currentPage() - 1) * $rows->perPage() + $loop->index) }} |
|
{{$row->title ?? __('None')}} | @if($row->category) {{$row->category->name}} @else - @endif | @if($row->focus_keyword) {{$row->focus_keyword}} @else - @endif | {{$row->status ? __('Active') : __('Inactive')}} |
{{Carbon\Carbon::parse($row->created_at)->format('M j, Y')}}
{{Carbon\Carbon::parse($row->created_at)->format('g:i A')}} |
@if(auth()->user()->can('update_blogs')) @endif @if(auth()->user()->can('delete_blogs')) @endif |