@if ($action === 'created') تم إنشاء حجز جديد @elseif ($action === 'canceled') تم إلغاء حجز @else تم تعديل حجز @endif #{{ $reservation->id }}

الموظف: {{ $actorName }}

العميل {{ optional($reservation->customer)->name ?? '-' }}
المنتج {{ optional($reservation->product)->name ?? '-' }}
الحالة {{ $reservation->status }}
السعر النهائي {{ number_format((float) $reservation->price, 2) }}
العربون {{ number_format((float) $reservation->deposit, 2) }}
@if (! empty($newValues))

تفاصيل التغيير

@foreach ($newValues as $field => $newValue) @endforeach
الحقل القيمة السابقة القيمة الجديدة
{{ str_replace('_', ' ', $field) }} {{ $oldValues[$field] ?? '-' }} {{ $newValue ?? '-' }}
@endif