@extends('backend.master') @push('styles') @endpush @section('title') {{ $title }} @endsection @section('content') @csrf @method('PUT') type == 'free_evaluation' ? 'selected' : '' }} value="free_evaluation">{{ _trans('common.Book Free Evaluation') }} type == 'book_viewing' ? 'selected' : '' }} value="book_viewing">{{ _trans('common.Book Viewing') }} @foreach($properties as $property) property_id == $property->id ? 'selected' : '' }} value="{{ $property->id }}">{{ $property->name }} @endforeach {{ _trans('common.Time Slot') }} @foreach($timeslots ?? [] as $time_slot) time_slot_id == $time_slot->id ? 'checked' : '' }} type="radio" value="{{ $time_slot->id }}" name="time_slot_id" id="slotId{{$time_slot}}"> {{ $time_slot->start_time }} - {{ $time_slot->end_time }} @endforeach property_type == 'letting' ? 'selected' : '' }} value="letting">{{ _trans('common.Letting') }} property_type == 'sales' ? 'selected' : '' }} value="sales">{{ _trans('common.Sales') }} @endsection @push('script') @endpush