@if (@$staffCount > 0)

{{ __('Find Or Choose Your Staff') }}

@else

{{ __('Choose Your Staff') }}

@endif
@php $classes = @$staffCount > 0 ? '' : 'd-flex justify-content-center'; @endphp
@foreach ($staffs as $staff)
@if ($staff->role == 'vendor') @if ($staff->vendor_id != 0) @if (!empty($staff->vendor->photo)) Staff @else Staff @endif @else Staff @endif @else Staff @endif
@if ($staff->role == 'vendor')
{{ !empty($staff->name) ? $staff->name : $staff->username }}
@else
{{ $staff->name }}
@endif @if ($staff->role == 'vendor') @if ($staff->vendor_id != 0) @if ($staff->vendor->show_email_addresss == 1) {{ $staff->vendor->email }} @endif @endif @else @if ($staff->email_status == 1) {{ $staff->email }} @endif @endif
{{ __('Select Staff') }}
@endforeach

{{ __('Select Date & Time') }}

{{ __('Please Select a Date for Available Schedule') }}
{{ __('Login') }}
@if ($bs->google_recaptcha_status == 1)
{!! NoCaptcha::renderJs() !!} {!! NoCaptcha::display() !!}
@endif

{{ __('Billing Details') }}

@if (Auth::guard('web')->user()) {{ __('Prev Step') }} @else @endif {{ __('Next Step') }}

{{ __('Select Payment Method') }}

@csrf
@php $display = 'none'; @endphp
    @foreach ($offline_gateways as $offlineGateway)
    @if (!is_null($offlineGateway->short_description))

    {{ $offlineGateway->short_description }}

    @endif @if (!is_null($offlineGateway->instructions))
    {!! replaceBaseUrl($offlineGateway->instructions, 'summernote') !!}
    @endif @if ($offlineGateway->has_attachment == 1)

    @endif
    @endforeach
    Image

    {{ __('Congratulations') . '!' }}
    @if (isset($bookingInfo)) @if ($bookingInfo->gateway_type == 'offline') {{ __('Wait for the payment confirmation mail') }}
    @else {{ __('You have booked this service successfully') }} @endif @endif

    @if (isset($bookingInfo))
    {{ __('Booking No.') . ' ' . '#' . $bookingInfo->order_number }}
    {{ __('Service Title') . ' :' }}
    @if ($bookingInfo->serviceContent->isNotEmpty()) @foreach ($bookingInfo->serviceContent as $content) {{ truncateString($content->name, 50) }} @endforeach @endif
    {{ __('Booking Date') . ' :' }}
    {{ date_format($bookingInfo->created_at, 'M d, Y') }}
    {{ __('Appointment Date') . ' :' }}
    {{ \Carbon\Carbon::parse($bookingInfo->booking_date)->format('M d, Y') }}
    {{ __('Appointment Time') . ' :' }}
    {{ $bookingInfo->start_date }} - {{ $bookingInfo->end_date }}
    {{ __('Vendor') . ' :' }}
    @if ($bookingInfo->vendor_id != 0) {{ $bookingInfo->vendor->username }} @else {{ $admin->username }} @endif
    {{ __('Paid Amount') . ' :' }}
    {{ $bookingInfo->currency_text_position == 'left' ? $bookingInfo->currency_text . ' ' : '' }}{{ number_format($bookingInfo->customer_paid, 2, '.', ',') }}{{ $bookingInfo->currency_text_position == 'right' ? ' ' . $bookingInfo->currency_text : '' }}
    {{ __('Paid Via') . ' :' }}
    {{ $bookingInfo->payment_method }}
    {{ __('Payment Status') . ' :' }}
    @if ($bookingInfo->payment_status == 'completed') {{ __('completed') }} @elseif ($bookingInfo->payment_status == 'pending') {{ __('pending') }} @else {{ __('rejected') }} @endif
    @endif