@extends('frontend.layout.master') @section('site_title',__('Wallet History')) @section('style') @endsection @section('content') @include('frontend.user.layout.partials.sidebar') {{ __('Balance:') }} {{ float_amount_with_currency_symbol($total_wallet_balance ?? 00) }} {{ __('Earning+Deposit') }} @if($total_wallet_balance >= get_static_option('minimum_withdraw_amount')) @if(moduleExists('SecurityManage')) @if(Auth::guard('web')->user()->freeze_withdraw == 'freeze') {{ __('Withdraw Request') }} @else {{ __('Withdraw Request') }} @endif @else {{ __('Withdraw Request') }} @endif @endif {{ __('Deposit to Wallet') }} @include('wallet::freelancer.wallet.search-result') @include('wallet::freelancer.wallet.withdraw-modal') @endsection @section('script') @include('wallet::freelancer.wallet.wallet-js') @endsection
{{ __('Earning+Deposit') }}