mirror of
https://gitlab.com/omair-personal/exchange.git
synced 2026-08-19 04:24:08 +00:00
added bank name and bank branch to booking calcualation
This commit is contained in:
@@ -78,10 +78,6 @@ class BookingController extends Controller
|
||||
return $bookings;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public function userComplete(){
|
||||
$user = Auth::user();
|
||||
$bookings = Booking::select('user_id', 'id', 'created_at', 'status', 'rate', 'term', 'amount', 'bia', 'verification_status')
|
||||
@@ -786,6 +782,8 @@ class BookingController extends Controller
|
||||
'taxAmount' => $taxAmount,
|
||||
'billingChargeAmount' => $billingChargeAmount,
|
||||
'bankin_amount' => $bankin_amount,
|
||||
'bank_name'=> $request->input('bank_name'),
|
||||
'bank_branch'=> $request->input('bank_branch'),
|
||||
'acc_name' => $request->input('acc_name'),
|
||||
'acc_no' => $request->input('acc_no')
|
||||
], 200);
|
||||
|
||||
Reference in New Issue
Block a user