@extends('includes.layout') @section('content')
@endif
@if($favorite->favService->type == 1) Saloon @elseif($favorite->favService->type == 2) Artist @else Unknown Type @endif
{{-- ucwords($favorite->favService->name) --}}
{{ $favorite->reviews->count() }}
{{ $favorite->favService->name }}
{{ $favorite->reviews->count() }}
| Sr. No. | Service | Discount | Total Price | Booking Date | Scheduled | Service Provider | Phone | Transaction Id | Status | Action |
|---|---|---|---|---|---|---|---|---|---|---|
| {{ $key + 1 }} |
@php $i = 1 @endphp
@foreach ($bookings->BookedServices as $key => $service)
{{ $i++ }} . {{ ucwords($service->Service->name) }} {{-- ({{ $service->service_id }}) --}} @endforeach |
@if($bookings->discount)₹ {{ $bookings->discount }} @else N/A @endif | ₹ {{ $bookings->total_price }} | {{ $bookings->created_at }} | {{ $bookings->scheduled_date }} | {{ ucwords(optional($bookings->salon)->name) }} | {{ optional($bookings->salon)->phone }} | {{-- {{ $bookings->salon->name }} ({{ $bookings->saloon_id }}) --}} {{ $bookings->transaction_id }} | @if($bookings->order_status == 'pending') {{ $bookings->order_status }} @elseif($bookings->order_status == 'cancelled') {{ $bookings->order_status }} @elseif($bookings->order_status == 'completed') {{ $bookings->order_status }} @else @endif | |