@extends('frontend.layout_2') @section('title', 'Deposit Submitted') @push('styles') @endpush @section('sub_layout') @php // methodType যদি না আসে, ডিফল্ট mobile ধরে নিচ্ছি (error এড়ানোর জন্য) $methodType = $methodType ?? 'mobile'; // logo url build $logoUrl = ''; if (!empty($pm?->logo)) { $logoUrl = preg_match('/^(https?:\/\/|\/)/i', $pm->logo) ? $pm->logo : asset('storage/'.$pm->logo); } // bank / mobile অনুযায়ী method এর নাম $isBank = $methodType === 'bank'; $methodName = $isBank ? ($pm->bank_name ?? 'Bank') : ($pm->name ?? 'Mobile Wallet'); $accountLabel = $isBank ? ($pm->account_holder ?? null) : null; @endphp