mirror of
https://github.com/v2board/v2board.git
synced 2025-06-13 21:28:27 +08:00
update: payment icon
This commit is contained in:
@ -69,6 +69,7 @@ class PaymentController extends Controller
|
||||
]);
|
||||
if (!Payment::create([
|
||||
'name' => $request->input('name'),
|
||||
'icon' => $request->input('icon'),
|
||||
'payment' => $request->input('payment'),
|
||||
'config' => $request->input('config'),
|
||||
'uuid' => Helper::randomChar(8)
|
||||
|
@ -211,7 +211,8 @@ class OrderController extends Controller
|
||||
$methods = Payment::select([
|
||||
'id',
|
||||
'name',
|
||||
'payment'
|
||||
'payment',
|
||||
'icon'
|
||||
])
|
||||
->where('enable', 1)->get();
|
||||
|
||||
|
Reference in New Issue
Block a user