@extends('backEnd.layouts.master') @section('title', 'Payment Settings') @section('content')
@csrf
{{-- bKash --}}
bKash
status ? 'checked' : '' }}>
bKash Tokenized Checkout: App Key, App Secret, Username, Password — bKash Developer Portal থেকে নিন।
is_sandbox ? 'checked' : '' }}>
{{-- Nagad --}}
Nagad
status ? 'checked' : '' }}>
is_sandbox ? 'checked' : '' }}>
{{-- SSLCommerz --}}
SSLCommerz
status ? 'checked' : '' }}>
SSLCommerz: Store ID + Store Password from merchant panel. Sandbox ON for testing. IPN URL (SSLCommerz panel-এ দিন): {{ \App\Support\AppUrl::shopRoute('frontend.sslcommerz.ipn') }}
is_sandbox ? 'checked' : '' }}>
{{-- Cash on Delivery --}}
Cash on Delivery (COD)
@php $codEnabled = (bool) (optional(\App\Models\GeneralSetting::first())->cod_enabled); @endphp

COD toggle: Website Settings → General @if($codEnabled) Enabled @else Disabled @endif

  • bKash বা SSLCommerz active থাকলে checkout-এ COD দেখাবে না (auto sync)।
  • Advance payment required product থাকলে COD hide — online payment বাধ্যতামূলক।
  • Nagad credentials save করা যায়; live checkout payment শীঘ্রই যোগ হবে।
@endsection