@php
$logo = $biller->logo;
$isStored = $logo && \Illuminate\Support\Facades\Storage::disk('public')->exists($logo);
$isUrl = $logo && \Illuminate\Support\Str::startsWith($logo, ['http://','https://']);
@endphp
@if($isStored)
 }})
@elseif($isUrl)

@elseif($logo)
{{ $logo }}
@else
No logo
@endif
{{ $biller->name }}
Code: {{ $biller->code }}
Category: {{ $biller->category?->name }}
@if($biller->type)
{{ ucfirst($biller->type) }}
@endif
{{ ucfirst($biller->status) }}
@if($biller->provider)
Provider: {{ $biller->provider }}
@endif