@extends('layouts.organization') @section('breadcrumb')
{{ __('Consultation') }}
{{ __('Dashboard') }}
{{ __('Consultation') }}
@endsection @section('content')
@csrf
{{ __('Are you available for 1 to 1 consultation?') }}
consultation_available == 1) checked @endif type="radio" id="inlineCheckbox1" value="1" name="consultation_available">
{{ __('Yes') }}
consultation_available != 1) checked @endif type="radio" id="inlineCheckbox2" value="0" name="consultation_available">
{{ __('No') }}
{{ __('Available type for 1 to 1 consultation?') }}
available_type == 1) checked @endif type="radio" id="inlineCheckbox3" value="1" name="available_type">
{{ __('In Person') }}
available_type == 2) checked @endif type="radio" id="inlineCheckbox4" value="2" name="available_type">
{{ __('Online') }}
available_type == 3) checked @endif type="radio" id="inlineCheckbox5" value="3" name="available_type">
{{ __('Both') }}
{{ __('Consultancy Area') }}
@foreach (CONSULTANCY_AREA_ARRAY as $key => $consultancyArea)
consultancy_area == $key) checked @endif type="radio" id="consultancyArea{{ $key }}" value="{{ $key }}" name="consultancy_area">
{{ __($consultancyArea) }}
@endforeach
{{ __('Hourly Rate') }} {{ get_currency_symbol() }}
@if ($errors->has('hourly_rate'))
{{ $errors->first('hourly_rate') }}
@endif
{{ __('Hourly Old Rate') }} {{ get_currency_symbol() }}
@if ($errors->has('hourly_old_rate'))
{{ $errors->first('hourly_old_rate') }}
@endif
is_offline == INSTRUCTOR_IS_OFFLINE ? 'checked' : '' }}>
{{ __('Offline Status') }}
{{ __('Offline Message') }}
{{ $organization->offline_message }}
{{ __('If you put your account offline, a message will be displayed in your profile and it will be noticed to users. You can type a personalized message in the following input.') }}
is_subscription_enable == STATUS_ACCEPTED ? 'checked' : '' }}>
{{ __('Is Subscription Enable') }}
{{ __('Save') }}
{{ __('Your Time Slot List') }}
{{ __('Days') }}
{{ __('Action') }}
{{ __('Saturday') }}
{{ __('Add Slot') }}
{{ getDayAvailableStatus(6) == 1 ? __('On day') : __('Off day') }}
{{ __('View') }}
{{ __('Sunday') }}
{{ __('Add Slot') }}
{{ getDayAvailableStatus(0) == 1 ? __('On day') : __('Off day') }}
{{ __('View') }}
{{ __('Monday') }}
{{ __('Add Slot') }}
{{ getDayAvailableStatus(1) == 1 ? __('On day') : __('Off day') }}
{{ __('View') }}
{{ __('Tuesday') }}
{{ __('Add Slot') }}
{{ getDayAvailableStatus(2) == 1 ? __('On day') : __('Off day') }}
{{ __('View') }}
{{ __('Wednesday') }}
{{ __('Add Slot') }}
{{ getDayAvailableStatus(3) == 1 ? __('On day') : __('Off day') }}
{{ __('View') }}
{{ __('Thursday') }}
{{ __('Add Slot') }}
{{ getDayAvailableStatus(4) == 1 ? __('On day') : __('Off day') }}
{{ __('View') }}
{{ __('Friday') }}
{{ __('Add Slot') }}
{{ getDayAvailableStatus(5) == 1 ? __('On day') : __('Off day') }}
{{ __('View') }}
{{ __('Saturday') }}
@csrf
{{ __('Time') }}
{{ __('Start Time') }}
{{ __('End Time') }}
{{ __('Add Slot') }}
{{ __('Save') }}
{{ __('Saturday') }}
{{ __('Time') }}
@endsection @push('script') @endpush