芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/myvyralapp.com/bck/app/Http/Controllers/User/WithdrawalController.php
active()->moneyOut()->get(); $money_transactions = Transaction::where('type', 'withdraw')->get(); return view('frontend.pages.user.money_withdraw', compact('page_title','payment_gateways','money_transactions')); } public function index(Request $request) { $page_title = "Withdraw Log"; $money_withdraw_logs = Transaction::where('type', 'withdraw')->where('user_id', auth()->user()->id)->with('user:id,first_name')->paginate(20); return view('frontend.pages.user.money_withdraw_logs', compact('money_withdraw_logs','page_title')); } }