@php
$p = $row->image_path;
$isStored = $p && \Illuminate\Support\Facades\Storage::disk('public')->exists($p);
$isUrl = $p && \Illuminate\Support\Str::startsWith($p,['http://','https://']);
$src = $isStored ? asset('storage/'.$p) : ($isUrl ? $p : null);
@endphp
@if($src)

@elseif($p)
{{ $p }}
@else
No image
@endif
Status
{{ $row->is_active ? 'Active' : 'Inactive' }}
Sort Order
{{ $row->sort_order }}