ok
Direktori : /home2/selectio/public_html/fms-worksuite/resources/views/notices/ajax/ |
Current File : /home2/selectio/public_html/fms-worksuite/resources/views/notices/ajax/create.blade.php |
<div class="row"> <div class="col-sm-12"> <x-form id="save-notice-data-form"> <div class="add-client bg-white rounded"> <h4 class="mb-0 p-20 f-21 font-weight-normal text-capitalize border-bottom-grey"> @lang('modules.notices.notice') @lang('app.details')</h4> <div class="row p-20"> <div class="col-lg-12"> <div class="row"> <div class="col-md-12"> <div class="form-group my-3"> <div class="d-flex"> <x-forms.radio fieldId="toEmployee" :fieldLabel="__('modules.notices.toEmployee')" fieldName="to" fieldValue="employee" checked="true"> </x-forms.radio> @if (!in_array('client', user_roles())) <x-forms.radio fieldId="toClient" :fieldLabel="__('modules.notices.toClients')" fieldValue="client" fieldName="to"></x-forms.radio> @endif </div> </div> </div> <div class="col-md-6"> <x-forms.text fieldId="heading" :fieldLabel="__('modules.notices.noticeHeading')" fieldName="heading" fieldRequired="true" :fieldPlaceholder="__('placeholders.noticeTitle')"> </x-forms.text> </div> <div class="col-md-6 department"> <x-forms.select fieldId="team_id" :fieldLabel="__('app.department')" fieldName="team_id" search="true"> <option value=""> -- </option> @foreach ($teams as $team) <option value="{{ $team->id }}">{{ mb_ucfirst($team->team_name) }}</option> @endforeach </x-forms.select> </div> <div class="col-md-12"> <div class="form-group my-3"> <x-forms.label class="my-3" fieldId="description-textt" :fieldLabel="__('modules.notices.noticeDetails')"> </x-forms.label> <div id="description"></div> <textarea name="description" id="description-text" class="d-none"></textarea> </div> </div> </div> </div> </div> <x-form-actions> <x-forms.button-primary id="save-notice" class="mr-3" icon="check">@lang('app.save') </x-forms.button-primary> <x-forms.button-cancel :link="route('notices.index')" class="border-0">@lang('app.cancel') </x-forms.button-cancel> </x-form-actions> </div> </x-form> </div> </div> <script> $(document).ready(function() { quillMention(null, '#description'); // show/hide project detail $(document).on('change', 'input[type=radio][name=to]', function() { $('.department').toggleClass('d-none'); }); $('#save-notice').click(function() { const url = "{{ route('notices.store') }}"; var note = document.getElementById('description').children[0].innerHTML; document.getElementById('description-text').value = note; $.easyAjax({ url: url, container: '#save-notice-data-form', type: "POST", disableButton: true, blockUI: true, buttonSelector: "#save-notice", data: $('#save-notice-data-form').serialize(), success: function(response) { if (response.status == 'success') { if ($(MODAL_XL).hasClass('show')) { $(MODAL_XL).modal('hide'); window.location.reload(); } else { window.location.href = response.redirectUrl; } } } }); }); init(RIGHT_MODAL); }); </script>