@extends('admin.layouts.dashboard') @section('title', 'Appointment Settings') @section('content')

Appointment Settings

@if(session('success'))
{{ session('success') }}
@endif
@csrf @method('PUT')
Booking Type

Choose whether customers need to pay at the time of booking or can book for free.

appointment_type === 'paid' ? 'checked' : '' }}>
appointment_type === 'free' ? 'checked' : '' }}>
{{-- Booking fee — only shown when paid --}}
$
This amount will be charged to customers at booking time.
@include('admin.partials._payment-gateway-settings', ['appSetting' => $setting, 'idPrefix' => 'as_'])
@if($setting->appointment_type === 'paid') Paid mode: Customers will be redirected to payment page after filling the booking form. Booking is only confirmed after successful payment. @else Free mode: Customers can book directly without any payment. Booking is confirmed immediately. @endif
@endsection