@if(isset($item->content_type) && $item->content_type === 'product')
@php $product = $item->displayable_product; @endphp
@if($product && $product->image_path)
@else
@endif
@else
@if($item->desktop_image_url)
@else
@endif
@endif
|
@if(isset($item->content_type) && $item->content_type === 'product')
@php $product = $item->displayable_product; @endphp
{{ $product ? $product->title : 'N/A' }}
Product ID: {{ $item->product_id }}
@else
{{ $item->name }}
{{ isset($item->title) ? Str::limit($item->title, 60) : '' }}
@endif
|
@if($item->status->value == 'active')
{{ $item->status->label() }}
@elseif($item->status->value == 'scheduled')
{{ $item->status->label() }}
@else
{{ $item->status->label() }}
@endif
|
{{ $item->updated_at->diffForHumans() }}
|
|
@endforeach