Skip to content

Commit b14fd9d

Browse files
Merge pull request #1965 from shivendra-webkul/issue_1961
Fixed issue #1961 (Activity Schedule From and Schedule To)
2 parents bb140c5 + cc0ff5e commit b14fd9d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

packages/Webkul/Admin/src/Resources/views/activities/edit.blade.php

+4-2
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,9 @@ class="primary-button"
6060
@lang('admin::app.activities.edit.schedule_from')
6161
</x-admin::form.control-group.label>
6262

63-
<x-admin::flat-picker.datetime class="!w-full" ::allow-input="false">
63+
<x-admin::flat-picker.datetime class="!w-full" ::allow-input="true">
6464
<input
65+
name="schedule_from"
6566
value="{{ old('schedule_from') ?? $activity->schedule_from }}"
6667
class="flex w-full rounded-md border px-3 py-2 text-sm text-gray-600 transition-all hover:border-gray-400 dark:border-gray-800 dark:bg-gray-900 dark:text-gray-300 dark:hover:border-gray-400"
6768
placeholder="@lang('admin::app.activities.edit.schedule_from')"
@@ -74,8 +75,9 @@ class="flex w-full rounded-md border px-3 py-2 text-sm text-gray-600 transition-
7475
@lang('admin::app.activities.edit.schedule_to')
7576
</x-admin::form.control-group.label>
7677

77-
<x-admin::flat-picker.datetime class="!w-full" ::allow-input="false">
78+
<x-admin::flat-picker.datetime class="!w-full" ::allow-input="true">
7879
<input
80+
name="schedule_to"
7981
value="{{ old('schedule_to') ?? $activity->schedule_to }}"
8082
class="flex w-full rounded-md border px-3 py-2 text-sm text-gray-600 transition-all hover:border-gray-400 dark:border-gray-800 dark:bg-gray-900 dark:text-gray-300 dark:hover:border-gray-400"
8183
placeholder="@lang('admin::app.activities.edit.schedule_to')"

0 commit comments

Comments
 (0)