Update: Vue 2 to Vue 3 with Typescript, node 14 to node 22, Jenkinsfile, Dockerfile, vapor.yml

This commit is contained in:
Dillon Ngo
2026-06-14 20:41:11 +08:00
parent 6be64a3a74
commit ce996d1da7
380 changed files with 18271 additions and 16014 deletions
@@ -34,10 +34,10 @@ class PaymentTransactionResource extends JsonResource
$booking_marking = '';
switch ($this->owner_type) {
case Booking::class:
$booking_marking = $booking->marking;
$booking_marking = $booking->marking ?? "";
break;
case Wallet::class:
$booking_marking = $this->booking->marking;
$booking_marking = $this->booking->marking ?? "";
break;
}