@extends('backend.master') @section('title') আবেদন ফী @endsection @section('body') @if(Auth::user()->user_type == 4 || strpos(Auth::user()->permission, 'i') !== false)

আবেদন ফী

গ্রাহকের আইডি {{ $client->client_id }}
হোল্ডিং নং {{ $client->holding_no }}
গ্রাহকের নাম {{ $client->client_name }}
পিতা/ স্বামীর নাম {{ $client->client_father_or_husband_name }}
গ্রাহকের ঠিকানা {{ $client->client_address }}
মোবাইল নম্বর {{ $client->phone }}
@if($client->app_payment_status == 0)
@csrf

{{ 'আবেদন ফী বাবদ '.$app_fee->app_fee.' টাকা কর প্রদান করুন।' }}

@if(Auth::user()->user_type == 4 || strpos(Auth::user()->permission, '4') !== false)
@endif
@elseif($client->app_payment_status == 1)
আবেদন ফী {{ $client->appPayment->app_fee }}
আদায়কারী {{ $client->appPayment->user?->name ?? 'অনলাইন' }}
আদায়ের সময় {{ date('d M, Y', strtotime($client->appPayment->updated_at)) }}
আদায়ের মাধ্যম @if($client->appPayment->payment_method == 'cash') ক্যাশ @elseif($client->appPayment->payment_method == 'nagad') নগদ @elseif($client->appPayment->payment_method == 'onlinePayment') অনলাইন পেমেন্ট @endif
@endif
@else @include('backend.errors.404') @endif @endsection @section('script') @endsection