9 lines
167 B
PHP
Executable File
9 lines
167 B
PHP
Executable File
<?php
|
|
|
|
use App\Models\Order;
|
|
|
|
$order_id = $model->order_id;
|
|
Order::query()->where('id', $order_id)->update([
|
|
'payment_status' => "waiting"
|
|
]);
|