@extends('Layouts.sellerLayout') @section('title') {{__('Pony Reduce')}} @endsection @section('breadcrumb')
@endsection @section('content')
@php $Wallet=0; @endphp @php $WalletWithdrawal=0; @endphp
{{__('Store Name')}} : @if($data['Wallet']!=null) {{$data['Wallet']->seller->store_name}} @else - @endif
{{__('Inventory')}} : @if($data['Wallet']!=null) {{number_format($data['Wallet']->inventory)}} @php $Wallet=$data['Wallet']->inventory; @endphp {{$prefix}} @else 0 @endif
{{__('Withdrawal Balance')}} : @if($data['Wallet']!=null) {{number_format($data['Wallet']->withdrawal)}} @php $WalletWithdrawal=$data['Wallet']->withdrawal; @endphp {{$prefix}} @else 0 @endif
{{__('Pony Reduce')}}
@CSRF
@if ($errors->has('amount'))
{{ $errors->first('amount') }}
@endif
@endsection