@extends('backend.master') @section('content')
Biller Details
@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

Min Amount
{{ number_format($biller->min_amount,2) }}
Max Amount
{{ number_format($biller->max_amount,2) }}
Sort Order
{{ $biller->sort_order }}
Edit
@csrf @method('DELETE')
@endsection