@extends('backend.master') @section('content')
Bank Details
@php $p = $bank->logo_path; $isStored = $p && \Illuminate\Support\Facades\Storage::disk('public')->exists($p); $isUrl = $p && \Illuminate\Support\Str::startsWith($p,['http://','https://']); @endphp @if($isStored) @elseif($isUrl) @elseif($p)
{{ $p }}
@else No logo @endif
{{ $bank->name }}
Slug: {{ $bank->slug }} {{ $bank->is_active ? 'Active' : 'Inactive' }}

Min Transaction
৳{{ number_format($bank->min_transaction,2) }}
Reward Percent
{{ number_format($bank->reward_percent,2) }}%
Edit
@csrf @method('DELETE')
@endsection