@extends('backend.master') @section('content')
Country Details
@php $p = $row->flag_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 flag @endif
{{ $row->name }}
Slug: {{ $row->slug }} Currency: {{ $row->currency_name }} {{ $row->is_active ? 'Active' : 'Inactive' }}

Unit
{{ $row->unit_label ?: '1' }}
Rate (BDT)
৳{{ number_format($row->rate_bdt,2) }}
Position
{{ $row->position }}
Header BG
@if($row->header_bg) {{ $row->header_bg }} @else @endif
Share Title (BN)
{{ $row->share_title_bn ?? '—' }}
Share Title (EN)
{{ $row->share_title_en ?? '—' }}
Share Desc (BN)
{{ $row->share_desc_bn }}
Share Desc (EN)
{{ $row->share_desc_en }}
Edit
@csrf @method('DELETE')
@endsection