@foreach($products as $key=> $row)
{{ $row->title }} @if(isMainAdminRole()) {{ $row->category->currentDescription->name ?? "" }} {{ $row->user->name ?? "" }} @endif {{ $row->subcategory->currentDescription->name ?? "" }} {{ __("general.$row->status") }} {{ \Carbon\Carbon::parse($row->created_at)->format('Y/m/d') }} @if($row->deleted_at) {{ __('dashboard.restore') }} {{-- {{ __('dashboard.delete') }} --}} @else {{ __('dashboard.edit') }} {{ __('dashboard.trash') }} @endif @endforeach @if($products->hasPages()) {{ $products->links() }} @endif