This commit is contained in:
jitendra 2022-04-06 16:24:27 +05:30
parent 93f582b78f
commit 4d44b844f4
12 changed files with 14 additions and 0 deletions

View File

@ -101,6 +101,7 @@ return [
'book-an-appointment' => 'حجز موعد',
'date' => 'تاريخ',
'slot' => 'فتحة',
'no-slots-available' => 'No slots available',
'rent-an-item' => 'استئجار عنصر',
'choose-rent-option' => 'اختر خيار الإيجار',
'daily-basis' => 'الأساس اليومي',

View File

@ -101,6 +101,7 @@ return [
'book-an-appointment' => 'Book an Appointment',
'date' => 'Date',
'slot' => 'Slot',
'no-slots-available' => 'No slots available',
'rent-an-item' => 'Rent an Item',
'choose-rent-option' => 'Choose Rent Option',
'daily-basis' => 'Daily Basis',

View File

@ -101,6 +101,7 @@ return [
'book-an-appointment' => 'Reservar una Cita',
'date' => 'Fecha',
'slot' => 'Horario',
'no-slots-available' => 'No slots available',
'rent-an-item' => 'Alquilar un Artículo',
'choose-rent-option' => 'Elija la Opción de Alquiler',
'daily-basis' => 'Diariamente',

View File

@ -101,6 +101,7 @@ return [
'book-an-appointment' => 'قرار ملاقات را رزرو کنید',
'date' => 'تاریخ',
'slot' => 'اسلات',
'no-slots-available' => 'No slots available',
'rent-an-item' => 'اجاره یک مورد',
'choose-rent-option' => 'گزینه اجاره را انتخاب کنید',
'daily-basis' => 'به صورت روزانه',

View File

@ -101,6 +101,7 @@ return [
'book-an-appointment' => 'एक अपॉइंटमेंट बुक करें',
'date' => 'तारीख',
'slot' => 'स्लॉट',
'no-slots-available' => 'No slots available',
'rent-an-item' => 'एक वस्तु किराए पर लें',
'choose-rent-option' => 'किराया विकल्प चुनें',
'daily-basis' => 'दैनिक आधार पर',

View File

@ -21,6 +21,7 @@ return [
'same-slot-all-days' => 'Stesso Slot tutti i giorni',
'slot-has-quantity' => 'Slot ha quantità',
'slots' => 'Slot',
'no-slots-available' => 'No slots available',
'from' => 'Da',
'to' => 'A',
'qty' => 'Qtà',

View File

@ -101,6 +101,7 @@ return [
'book-an-appointment' => 'Een afspraak maken',
'date' => 'Datum',
'slot' => 'Sleuf',
'no-slots-available' => 'No slots available',
'rent-an-item' => 'Huur een item',
'choose-rent-option' => 'Kies Huuroptie',
'daily-basis' => 'Dagelijks',

View File

@ -101,6 +101,7 @@ return [
'book-an-appointment' => 'Marque uma consulta',
'date' => 'Date',
'slot' => 'Slot',
'no-slots-available' => 'No slots available',
'rent-an-item' => 'Alugar um item',
'choose-rent-option' => 'Escolha a opção de aluguel',
'daily-basis' => 'Diariamente',

View File

@ -101,6 +101,7 @@ return [
'book-an-appointment' => 'Randevu Al',
'date' => 'Tarih',
'slot' => 'Slot',
'no-slots-available' => 'No slots available',
'rent-an-item' => 'Eşya Kiralama',
'choose-rent-option' => 'Kiralama Seçeneğini Seçin',
'daily-basis' => 'Günlük Bazında',

View File

@ -101,6 +101,7 @@ return [
'book-an-appointment' => '预约',
'date' => '日期',
'slot' => '插槽',
'no-slots-available' => 'No slots available',
'rent-an-item' => '租一个项目',
'choose-rent-option' => '选择租金选项',
'daily-basis' => '每日基础',

View File

@ -18,6 +18,8 @@
<div class="control-group slots" :class="[errors.has('booking[slot]') ? 'has-error' : '']">
<select v-validate="'required'" name="booking[slot]" class="control" data-vv-as="&quot;{{ __('bookingproduct::app.shop.products.slot') }}&quot;">
<option v-for="slot in slots" :value="slot.timestamp">@{{ slot.from + ' - ' + slot.to }}</option>
<option value="" v-if="! slots.length">{{ __('bookingproduct::app.shop.products.no-slots-available') }}</option>
</select>
<span class="control-error" v-if="errors.has('booking[slot]')">@{{ errors.first('booking[slot]') }}</span>

View File

@ -18,6 +18,8 @@
<div class="form-group slots" :class="[errors.has('booking[slot]') ? 'has-error' : '']">
<select v-validate="'required'" name="booking[slot]" class="form-style" data-vv-as="&quot;{{ __('bookingproduct::app.shop.products.slot') }}&quot;">
<option v-for="slot in slots" :value="slot.timestamp">@{{ slot.from + ' - ' + slot.to }}</option>
<option value="" v-if="! slots.length">{{ __('bookingproduct::app.shop.products.no-slots-available') }}</option>
</select>
<span class="control-error" v-if="errors.has('booking[slot]')">@{{ errors.first('booking[slot]') }}</span>