@extends('common.provider.layout.base') {{ App::setLocale( isset($_COOKIE['provider_language']) ? $_COOKIE['provider_language'] : 'en' ) }} @section('styles') @parent @stop @php $paymentConfig = json_decode( json_encode( Helper::getSettings()->payment ) , true); $cardObject = array_values(array_filter( $paymentConfig, function ($e) { return $e['name'] == 'card'; })); //print_r($cardObject);exit; $card = 0; $stripe_publishable_key = ""; if(count($cardObject) > 0) { $card = $cardObject[0]['status']; $stripePublishableObject = array_values(array_filter( $cardObject[0]['credentials'], function ($e) { return $e['name'] == 'stripe_publishable_key'; })); if(count($stripePublishableObject) > 0) { $stripe_publishable_key = $stripePublishableObject[0]['value']; } } @endphp @section('content') @lang('provider.transaction_details') @lang('provider.balance') account_balance_wallet Today Earnings This Week Earnings This Month Earnings @lang('provider.balance') account_balance_wallet @if($card==1) @lang('user.add_money') @lang('user.send_money') @lang('user.receive_money') @lang('user.enter_amount') @lang('user.select_card') Select @lang('user.add_money') @lang('user.profile.mobile') @lang('user.enter_amount') @lang('user.send_money') @endif @lang('provider.sno') @lang('provider.transaction_ref') @lang('provider.datetime') @lang('provider.amount') @stop @section('scripts') @parent @stop