تفاصيل الحجز
| # |
{{$subscribe->id ?? ''}} |
| اسم العميل |
{{$subscribe->User->name ?? ''}} |
| السعر الكلي |
{{$subscribe->total_price}} ريال |
@if ($subscribe->coupon)
| كوبون |
{{$subscribe->coupon}} |
@endif
| الخدمة |
{{$subscribe->Service->name ?? ''}} |
@if ($subscribe->image)
| الصورة |
|
@endif
{{-- 'name', 'email', 'password', 'phone' , 'role' , 'image' , 'latitude' , 'longitude' , 'address' ,
'verified', 'code' , 'social_id', 'social_type', 'branch_id' , 'status' --}}
تفاصيل العميل
| اسم العميل |
{{$subscribe->User->name ?? ''}} |
| البريد الالكترونى |
{{$subscribe->User->email ?? ''}} |
| رقم الجوال |
{{$subscribe->User->phone?? ''}} |
{{-- 'title_ar', 'title_en', 'description_ar' , 'description_en' , 'price', 'image' , 'active' , 'new_price',
'category_id', 'sku' , 'status' --}}
المنتجات
| الصورة |
العنوان |
السعر |
الكميه |
الاجمالي |
@foreach ($subscribe->SubscribeItem()->get() as $item)
|
{{$item->Product->name ?? ''}} |
{{$item->price ?? ''}} ريال |
{{$item->qty}} |
{{$item->qty * $item->price}} ريال |
@endforeach
@endsection
@section('script')
@endsection