DG
Size: a a a
DG
А
$payment->created_at = $now;
$payment->updated_at = $now;
$payment->save();
DG
DG
E
P
$payment = Payment::firstOrCreate([
'status' => 0,
'user_id' => $user_id,
'plan_id' => $plan_id,
'description' => $plan->name,
'paymentType' => $type,
'amount' => $plan->amount,
], [
'created_at' => $now,
'updated_at' => $now,
]);
DG
d.
$payment->created_at = $now;
$payment->updated_at = $now;
$payment->save();
E
$payment->created_at = $now;
$payment->updated_at = $now;
$payment->save();
E
P
E
А
P
А
DG
А
P