@extends('Agent::layouts.app') @section('title', '申请提现') @section('content')
@if(!$user->cashAccount)
添加支付宝
@else
  • 支付宝账户 {{ $user->cashAccount->alipay_account }}
@endif

提现金额

余额:{{ number_format($user->account->cash,2) }} {{-- --}}
@csrf @if(!$user->cashAccount)
提现
@else @if(!$user->cashAccount->alipay_account_code)
提现
@else
确认提现
@endif @endif
@endsection