%PDF- %PDF-
Direktori : /home/silvzytp/crm-dub-code/resources/views/backend/modules/fresh/ |
Current File : /home/silvzytp/crm-dub-code/resources/views/backend/modules/fresh/create.blade.php |
@extends('layouts.backend') @section('title', $siteTitle) @push('styles') <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.17/css/intlTelInput.css" /> <style> label[for="all_checked"]::before{ border-color: #ffffff !important; } .table:not(.table-dark) thead th, .table:not(.table-dark) tfoot th, .table:not(.table-dark) td, .table:not(.table-dark) th { padding: 0.3em 1em !important; } .table thead th { vertical-align: middle !important; } .filter-row-bg{ background: #0c2e66d1; } td input, td select { height: 24px; padding: 3px 5px; border: 0; width: 100% } input:focus, select:focus{ outline: none; } ul{ list-style: none; } .col-form-label{ font-size: 12px !important; } .text-sm{ font-size: 14px !important; } .contact-ul li{ margin-bottom: 5px; } .v-scroll { width: 100%; max-height: 350px; height: 350px; overflow-y: auto; } .comment-form textarea{ height: 40px; width: 100%; border: 1px solid #ddd; overflow: hidden; } textarea:focus{ outline: none; } .comment-form button { border: 0; width: 40px; color: #fff; height: 40px; text-align: center; } input[type="tel"] { height: 32px; width: 100%; border: 1px solid #dddddd !important; border-radius: 2px; } .iti.iti--allow-dropdown { width: 100%; } tbody tr td a{ min-height: 30px; display: block; line-height: 30px; } </style> @endpush @section('content') @if (in_array(Auth::user()->role->slug,['super-admin','admin'])) <form action="{{ isset($edit) ? route(routeName().'.fresh-lead.update', $edit->id) : route(routeName().'.fresh-lead.store') }}" method="POST"> @csrf @isset($edit) @method('PUT') @endisset <div class="text-left"> <button class="btn btn-sm btn-primary" type="submit"><i class="fas fa-plus fa-sm"></i> @isset($edit) Update Lead @else Save @endisset </button> </div> <div class="border rounded p-2 mt-3"> <div class="row"> <div class="col-md-4"> <div class="card"> <div class="card-body"> <div class="agent-box"> <div class="agent-profile d-flex align-items-center"> <img class="rounded-circle" src="https://placehold.co/50x50" alt=""> <div class="agent-content ml-2"> <strong class="d-block text-primary">{{ $edit->name ?? 'N/A' }}</strong> <span class="d-block text-primary">{{ $edit->reference_id ?? 'N/A' }}</span> </div> </div> <ul class="m-0 p-0 contact-ul mt-3"> <li><i class="fas fa-phone"></i> {{ $edit->phone ?? 'N/A' }}</li> <li><i class="fas fa-phone"></i> {{ $edit->number_1 ?? 'N/A' }}</li> <li><i class="fas fa-envelope"></i> {{ $edit->email ?? 'N/A' }}</li> </ul> </div> <div class="agent-field mt-4"> <x-form.vertical.selectbox name="agent" labelName="Agent" error="agent"> <option value="">-- Select --</option> @forelse ($agents as $agent) <option value="{{ $agent->id }}" @isset($edit) {{ $edit->agent_id == $agent->id ? 'selected' : '' }} @endisset>{{ $agent->name }}</option> @empty @endforelse </x-form.vertical.selectbox> @isset($edit) <x-form.vertical.inputbox name="ref" disabled labelName="Reference" value="{{ $edit->reference_id ?? '' }}"/> <x-form.vertical.inputbox name="enquiry_date" disabled value="{{ isset($edit) ? date_formats($edit->enquiry_date,'Y-m-d H:i a') : '' }}" labelName="Enquiry Date"/> <x-form.vertical.inputbox name="created_by" disabled labelName="Created By" value="{{ $edit->createdBy->name ?? '' }}"/> @endisset <x-form.vertical.selectbox name="lead_type" labelName="Lead Type"> <option value="">-- Select --</option> @forelse ($leadTypes as $leadType) <option value="{{ $leadType->id }}" @isset($edit) {{ $edit->lead_type_id == $leadType->id ? 'selected' : '' }} @endisset>{{ $leadType->name }}</option> @empty @endforelse </x-form.vertical.selectbox> <x-form.vertical.selectbox name="status" onchange="select_status(this.value)" labelName="Status" error="status"> <option value="">-- Select --</option> @forelse ($statuses as $status) <option value="{{ $status->id }}" @isset($edit) {{ $edit->status_id == $status->id ? 'selected' : '' }} @endisset>{{ $status->name }}</option> @empty @endforelse </x-form.vertical.selectbox> <x-form.vertical.selectbox name="sub_status" labelName="Sub Status" error="sub_status"> <option value="">-- Select --</option> </x-form.vertical.selectbox> <x-form.vertical.selectbox name="hot_link" labelName="Hot Link"> <option value="">-- Select --</option> <option value="1" @isset($edit) {{ $edit->hot_link == 1 ? 'selected' : '' }} @endisset>Yes</option> <option value="2" @isset($edit) {{ $edit->hot_link == 2 ? 'selected' : '' }} @endisset>No</option> </x-form.vertical.selectbox> </div> </div> </div> </div> <div class="col-md-4"> <div id="accordion"> <div class="border mb-2 bg-light"> <div class="" id="property-head2"> <h5 class="mb-0"> <button type="button" class="btn btn-sm w-100 text-sm text-left shadow-none collapsed" data-toggle="collapse" data-target="#property2" aria-expanded="false" aria-controls="property2"> Client Details </button> </h5> </div> <div id="property2" class="collapse show px-2" aria-labelledby="property-head2" data-parent="#accordion"> <x-form.vertical.inputbox name="name" labelName="Name" value="{{ $edit->name ?? '' }}"/> <x-form.vertical.inputbox type="email" name="email" labelName="Email" value="{{ $edit->email ?? '' }}"/> <div class="form-group row"> <label for="" class="col-md-4 col-4 col-form-label">Phone</label> <div class="col-md-8 col-8"> <input id="phone_number" type="tel" placeholder="Phone Number" value="{{ $edit->phone ?? '' }}"> <input id="phone_dialing" type="hidden"> <input id="phone" name="phone" type="hidden" value="{{ $edit->phone ?? '' }}"> <input type="hidden" id="phone_country_code" name="phone_country_code" value="{{ $edit->phone_country ?? 'ae' }}"> </div> </div> <div class="form-group row"> <label for="" class="col-md-4 col-4 col-form-label">Number1</label> <div class="col-md-8 col-8"> <input id="number1" type="tel" placeholder="Number1" value="{{ $edit->number_1 ?? '' }}" > <input id="number1_dialing" type="hidden"> <input name="number1" type="hidden" value="{{ $edit->number_1 ?? '' }}"> <input type="hidden" id="number1_country_code" name="number1_country_code" value="{{ $edit->number_1_country ?? 'ae' }}"> @error('number1') <span class="d-block text-danger">{{ $message }}</span> @enderror </div> </div> <div class="form-group row"> <label for="" class="col-md-4 col-4 col-form-label">Number2</label> <div class="col-md-8 col-8"> <input id="number2" type="tel" placeholder="Number2" value="{{ $edit->number_2 ?? '' }}"> <input id="number2_dialing" type="hidden"> <input name="number2" type="hidden" value="{{ $edit->number_2 ?? '' }}"> <input type="hidden" id="number2_country_code" name="number2_country_code" value="{{ $edit->number_1_country ?? 'ae' }}"> </div> </div> <x-form.vertical.selectbox name="country" labelName="Country"> <option value="">-- Select --</option> @include('layouts.include.country') </x-form.vertical.selectbox> <x-form.vertical.selectbox name="potential" labelName="Potential"> <option value="">-- Select --</option> @foreach (POTENTIAL as $key=>$value) <option value="{{ $key }}" @isset($edit) {{ $edit->potential == $key ? 'selected' : '' }} @endisset>{{ $value }}</option> @endforeach </x-form.vertical.selectbox> </div> </div> <div class="border bg-light"> <div class="" id="property-head1"> <h5 class="mb-0"> <button type="button" class="btn btn-sm w-100 text-sm text-left shadow-none collapsed" data-toggle="collapse" data-target="#property1" aria-expanded="false" aria-controls="property1"> Property Details </button> </h5> </div> <div id="property1" class="collapse show px-2" aria-labelledby="property-head1" data-parent="#accordion"> <x-form.vertical.selectbox name="category" labelName="Category"> <option value="">-- Select --</option> @forelse ($categories as $category) <option value="{{ $category->id }}" @isset($edit) {{ $edit->category_id == $category->id ? 'selected' : '' }} @endisset>{{ $category->name }}</option> @empty @endforelse </x-form.vertical.selectbox> <x-form.vertical.selectbox name="campaign" labelName="Campaign" error="campaign"> <option value="">-- Select --</option> @forelse ($campaigns as $campaign) <option value="{{ $campaign->id }}" @isset($edit) {{ $edit->campaign_id == $campaign->id ? 'selected' : '' }} @endisset>{{ $campaign->name }}</option> @empty @endforelse </x-form.vertical.selectbox> <x-form.vertical.selectbox name="emirate" labelName="Emirate"> <option value="">-- Select --</option> @forelse ($emirates as $emirate) <option value="{{ $emirate->id }}" @isset($edit) {{ $edit->emirate_id == $emirate->id ? 'selected' : '' }} @endisset>{{ $emirate->name }}</option> @empty @endforelse </x-form.vertical.selectbox> <x-form.vertical.selectbox name="channel" labelName="Channel"> <option value="">-- Select --</option> @forelse ($channels as $channel) <option value="{{ $channel->id }}" @isset($edit) {{ $edit->channel_id == $channel->id ? 'selected' : '' }} @endisset>{{ $channel->name }}</option> @empty @endforelse </x-form.vertical.selectbox> <x-form.vertical.selectbox name="source" labelName="Source"> <option value="">-- Select --</option> @forelse ($sources as $source) <option value="{{ $source->id }}" @isset($edit) {{ $edit->marketing_source_id == $source->id ? 'selected' : '' }} @endisset>{{ $source->name }}</option> @empty @endforelse </x-form.vertical.selectbox> <x-form.vertical.selectbox name="location" onchange="subLocation(this.value)" labelName="Location"> <option value="">-- Select --</option> @forelse ($locations as $location) <option value="{{ $location->id }}" @isset($edit) {{ $edit->location_id == $location->id ? 'selected' : '' }} @endisset>{{ $location->name }}</option> @empty @endforelse </x-form.vertical.selectbox> <x-form.vertical.selectbox name="sub_location" labelName="Sub-Location"> <option value="">-- Select --</option> </x-form.vertical.selectbox> </div> </div> </div> </div> <div class="col-md-4"> <div class="card"> <div class="card-body"> <div class="v-scroll"> </div> @isset($edit) <div class="comment-form d-flex mt-2"> <textarea rows="3" type="text" name="comment" class="px-2" placeholder="Write comment.."></textarea> <input type="hidden" value="{{ $edit->id }}" name="calling_id"> <button class="comment-submit bg-primary" type="button"><i class="far fa-paper-plane"></i></button> </div> @endisset </div> </div> </div> </div> </div> </form> @endif <div class="row mt-3"> <div class="col-12"> @permission('app.fresh-lead.bulk-operation') <div id="bulk-card" class="d-none"> <form method="POST" id="bulk-form"> @csrf <div class="d-flex align-items-center mb-3"> <x-form.selectbox name="operation" divClass="mb-0"> <option value="">-- Select --</option> <option value="delete">Delete</option> <option value="mtlp">Move to Lead Pool</option> </x-form.selectbox> <div class="bulk-apply"> <button class="btn btn-md btn-primary rounded-0 ml-2 px-3">Apply</button> </div> </div> </form> </div> @endpermission <div class="card"> <div class="card-body px-0"> <div class="table-responsive"> <table class="table table-sm table-bordered table-hover table-style" id="fresh-datatables"> <thead> <tr class="filter-row-bg text-light"> @permission('app.fresh-lead.bulk-operation') <td></td> @endpermission <td> <input type="text" name="filter_reference_id"> </td> <td> <select name="filter_campaign"> <option value="">-- Select --</option> @foreach ($campaigns as $campaign) <option value="{{ $campaign->id }}">{{ $campaign->name }}</option> @endforeach </select> </td> <td> <input type="input" placeholder="YY-MM-DD" autocomplete="off" id="date_range"> <input type="hidden" name="start_date"> <input type="hidden" name="end_date"> </td> <td> <select name="filter_agent"> <option value="">-- Select --</option> @forelse ($agents as $agent) <option value="{{ $agent->id }}">{{ $agent->name }}</option> @empty @endforelse </select> </td> <td> <input type="text" name="filter_name"> </td> @if(Auth::user()->role->slug != 'manager') <td> <input type="email" name="filter_email"> </td> <td> <input type="text" name="filter_phone"> </td> <td> <input type="text" name="filter_number1"> </td> <td> <input type="text" name="filter_number2"> </td> @endif <td> <select name="filter_lead_type"> <option value="">-- Select --</option> @forelse ($leadTypes as $leadType) <option value="{{ $leadType->id }}">{{ $leadType->name }}</option> @empty @endforelse </select> </td> <td> <select name="filter_hot_link"> <option value="">-- Select --</option> @forelse (HOT_LINK as $key=>$value) <option value="{{ $key }}">{{ $value }}</option> @empty @endforelse </select> </td> <td> <select name="filter_status" onchange="filterSubStatus(this.value)"> <option value="">-- Select --</option> @forelse ($statuses as $status) <option value="{{ $status->id }}">{{ $status->name }}</option> @empty @endforelse </select> </td> <td> <select name="filter_sub_status"> <option value="">-- Select --</option> </select> </td> <td> <select name="filter_category"> <option value="">-- Select --</option> @forelse ($categories as $category) <option value="{{ $category->id }}">{{ $category->name }}</option> @empty @endforelse </select> </td> <td> <select name="filter_channel"> <option value="">-- Select --</option> @forelse ($channels as $channel) <option value="{{ $channel->id }}">{{ $channel->name }}</option> @empty @endforelse </select> </td> <td> <select name="filter_emirate"> <option value="">-- Select --</option> @forelse ($emirates as $emirate) <option value="{{ $emirate->id }}">{{ $emirate->name }}</option> @empty @endforelse </select> </td> <td> <select name="filter_source"> <option value="">-- Select --</option> @forelse ($sources as $source) <option value="{{ $source->id }}">{{ $source->name }}</option> @empty @endforelse </select> </td> <td> <select name="filter_location" onchange="filterSubLocation(this.value)"> <option value="">-- Select --</option> @forelse ($locations as $location) <option value="{{ $location->id }}">{{ $location->name }}</option> @empty @endforelse </select> </td> <td> <select name="filter_sub_location"> <option value="">-- Select --</option> </select> </td> <td> <select name="filter_potential"> <option value="">-- Select --</option> @foreach (POTENTIAL as $key=>$value) <option value="{{ $key }}">{{ $value }}</option> @endforeach </select> </td> <td></td> </tr> <tr class="bg-primary text-light"> @permission('app.fresh-lead.bulk-operation') <th> <div class="custom-control custom-checkbox"> <input type="checkbox" class="custom-control-input" id="all_checked"> <label class="custom-control-label" for="all_checked"></label> </div> </th> @endpermission <th style="min-width: 90px">Ref</th> <th style="min-width: 130px">Campaign Name</th> <th style="min-width: 150px">Date</th> <th style="min-width: 100px">Agent</th> <th style="min-width: 130px">Name</th> @if(Auth::user()->role->slug != 'manager') <th style="min-width: 150px">Email</th> <th style="min-width: 100px">Phone</th> <th style="min-width: 100px">Number 1</th> <th style="min-width: 100px">Number 2</th> @endif <th style="min-width: 120px">Lead Type</th> <th style="min-width: 120px">Hot Link</th> <th style="min-width: 120px">Status</th> <th style="min-width: 140px">Sub Status</th> <th style="min-width: 140px">Category</th> <th style="min-width: 140px">Channel</th> <th style="min-width: 140px">Emirate</th> <th style="min-width: 140px">Source</th> <th style="min-width: 140px">Location</th> <th style="min-width: 140px">Sub Location</th> <th style="min-width: 120px">Potential</th> <th class="text-right" style="min-width: 60px">Action</th> </tr> </thead> <tbody> </tbody> </table> </div> </div> </div> </div> </div> @include('backend.modal.import') @include('backend.modal.calling-modal') @endsection @push('scripts') <script src="https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.17/js/intlTelInput.min.js"></script> <script> var calling_id = $('input[name="calling_id"]').val(); table = $('#fresh-datatables').DataTable({ processing: true, serverSide: true, order: [], //Initial no order bInfo: true, //TO show the total number of data bFilter: false, //For datatable default search box show/hide responsive: false, ordering: false, lengthMenu: [ [5, 10, 15, 25, 50, 100, 1000, 10000, -1], [5, 10, 15, 25, 50, 100, 1000, 10000, "All"] ], pageLength: 10, //number of data show per page ajax: { url: "{{ route(routeName().'.fresh-lead.index') }}", type: "GET", dataType: "JSON", data: function(d) { d._token = _token; d.reference = $('input[name="filter_reference_id"]').val(); d.campaign = $('select[name="filter_campaign"]').val(); d.start_date = $('input[name="start_date"]').val(); d.end_date = $('input[name="end_date"]').val(); d.agent = $('select[name="filter_agent"]').val(); d.name = $('input[name="filter_name"]').val(); d.email = $('input[name="filter_email"]').val(); d.phone = $('input[name="filter_phone"]').val(); d.number1 = $('input[name="filter_number1"]').val(); d.number2 = $('input[name="filter_number2"]').val(); d.lead_type = $('select[name="filter_lead_type"]').val(); d.hot_link = $('select[name="filter_hot_link"]').val(); d.status = $('select[name="filter_status"]').val(); d.sub_status = $('select[name="filter_sub_status"]').val(); d.category = $('select[name="filter_category"]').val(); d.channel = $('select[name="filter_channel"]').val(); d.emirate = $('select[name="filter_emirate"]').val(); d.source = $('select[name="filter_source"]').val(); d.location = $('select[name="filter_location"]').val(); d.sub_location = $('select[name="filter_sub_location"]').val(); d.potential = $('select[name="filter_potential"]').val(); }, }, columns: [ @permission('app.fresh-lead.bulk-operation') {data: 'bulk_check',orderable: false, searchable: true}, @endpermission {data: 'reference_id'}, {data: 'campaign_name'}, {data: 'enquiry_date'}, {data: 'agent'}, {data: 'name'}, @if(Auth::user()->role->slug != 'manager') {data: 'email'}, {data: 'phone'}, {data: 'number_1'}, {data: 'number_2'}, @endif {data: 'lead_type'}, {data: 'hot_link'}, {data: 'status'}, {data: 'sub_status'}, {data: 'category'}, {data: 'channel'}, {data: 'emirate'}, {data: 'source'}, {data: 'location'}, {data: 'sub_location'}, {data: 'potential'}, {data: 'action', orderable: false, searchable: false}, ], language: { processing: '<img src="{{ asset("uploads/images/table-loading.svg") }}">', emptyTable: '<strong class="text-danger">No Data Found</strong>', infoEmpty: '', zeroRecords: '<strong class="text-danger">No Data Found</strong>', oPaginate: { sPrevious: "Previous", // This is the link to the previous page sNext: "Next", // This is the link to the next page }, lengthMenu: "_MENU_" }, dom: "<'row'<'col-sm-12 col-md-6'l><'col-sm-12 col-md-6' <'float-right pr-15'B>>>" + "<'row'<'col-sm-12'tr>>" + "<'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7'<'float-right pr-15'p>>>", buttons: { buttons: [ { extend: 'excel', filename: 'fresh_leads{{ date("d_m_d") }}', title: 'Fresh Leads', className: 'excelButton btn btn-sm btn-primary', exportOptions: { columns: function (index, data, node) { return table.column(index).visible(); } }, }, { extend: 'csv', filename: 'fresh_leads{{ date("d_m_d") }}', title: 'Fresh Leads', className: 'csvButton btn btn-sm btn-primary', exportOptions: { columns: function (index, data, node) { return table.column(index).visible(); } }, } ] } }); $(document).on('click', 'button.comment-submit', function(){ var comment = $('textarea[name="comment"]').val(); var calling_id = $('input[name="calling_id"]').val(); if (comment != '') { $.ajax({ url: '{{ route(routeName().".comments.store") }}', type: 'POST', data:{_token:_token,calling_id:calling_id,comment:comment}, dataType: 'JSON', success: function(response){ if (response.status == 'success') { $('textarea[name="comment"]').val(''); leadComment(); }else{ flashMessage(response.status,response.message); } }, error: function(error){ console.log(error); } }); }else{ flashMessage('error','Comment field is required.'); } }); $(document).on('keyup keypress', 'textarea[name="comment"]', function(){ leadComment(); }); function leadComment(){ $.ajax({ url: '{{ route(routeName().".comments.get") }}', type: 'POST', data:{_token:_token,calling_id:calling_id}, dataType: 'JSON', success: function(response){ $('.v-scroll').html(''); if (response) { $('.v-scroll').html(response); }else{ } }, error: function(error){ console.log(error); } }); } leadComment(); $(document).on('keyup keypress', '.filter-row-bg td input', function(){ table.ajax.reload(); }); $(document).on('change', '.filter-row-bg td select', function(){ table.ajax.reload(); }); // deletable btn $(document).on('click', 'button.confirm-deletable-action', function(){ // modal data let data_id = $('#deletable-modal input.datatable').val(); const url = "{{ route(routeName().'.fresh-lead.destroy') }}"; deletable_action(data_id,url); // define function }); @permission('app.fresh-lead.bulk-operation') // user bulk operation $(document).on('click', 'button.bulk-deletable-action', function(){ var data_id = $('#deletable-modal input.datatable').val(); var operation_type = $('#deletable-modal .modal-body input.operation-type').val(); const url = "{{ route(routeName().'.fresh-lead.bulk-operation') }}"; var assign_user = $('#deletable-modal .modal-body input.manager-select').val(); bulk_deletable_action(data_id,operation_type,assign_user,url); }); @endpermission // operation assign manager $(document).on('change','select[name="operation"]', function(){ let selected_value = $(this).val(); if (selected_value == 'assign') { $('.manager-list').removeClass('d-none'); }else{ $('.manager-list').addClass('d-none'); } }); // datepicker $('input#date_range').daterangepicker({ opens: 'right', autoUpdateInput: false, locale: { cancelLabel: 'Clear' }, ranges: { 'Today' : [moment(), moment()], 'Last 7 Days' : [moment().subtract(6, 'days'), moment()], 'Last 30 Days': [moment().subtract(29, 'days'), moment()], 'This Month' : [moment().startOf('month'), moment().endOf('month')], 'Last Month' : [moment().subtract(1, 'month').startOf('month'), moment().subtract(1, 'month').endOf('month')], } }, function(start, end, label) { $('input[name="start_date"]').val(start.format('YYYY-MM-DD')); $('input[name="end_date"]').val(end.format('YYYY-MM-DD')); }); $('input#date_range').on('apply.daterangepicker', function(ev, picker) { $(this).val(picker.startDate.format('YYYY-MM-DD') + ' - ' + picker.endDate.format('YYYY-MM-DD')); table.ajax.reload(); }); $('input#date_range').on('cancel.daterangepicker', function(ev, picker) { $(this).val(''); $('input[name="start_date"]').val(''); $('input[name="end_date"]').val(''); table.ajax.reload(); }); // sub status get function select_status(status){ $.ajax({ type: "POST", url: "{{ route(routeName().'.callings.status.get-data') }}", data: {_token:_token,status:status}, dataType: "JSON", success: function (response) { $('select[name="sub_status"]').html(''); if (response) { $('select[name="sub_status"]').html(response); } } }); } // filter sub status get function filterSubStatus(status){ $.ajax({ type: "POST", url: "{{ route(routeName().'.callings.status.get-data') }}", data: {_token:_token,status:status}, dataType: "JSON", success: function (response) { $('select[name="filter_sub_status"]').html(''); if (response) { $('select[name="filter_sub_status"]').html(response); } } }); } @isset($edit) // sub status selected function statusSelected(){ $.ajax({ url: "{{ route(routeName().'.fresh-lead.sub-status.selected') }}", type: "POST", data: {_token:_token,data_id:{{ $edit->id }},status_id:{{ $edit->status_id }}}, dataType: "JSON", success: function (response) { if (response) { $('select[name="sub_status"]').html(response); } } }); } statusSelected(); // sub location selected function subLocationSelected(){ $.ajax({ url: "{{ route(routeName().'.fresh-lead.sub-location.selected') }}", type: "POST", data: {_token:_token,data_id:{{ $edit->id }},location_id:{{ $edit->location_id }}}, dataType: "JSON", success: function (response) { if (response) { $('select[name="sub_location"]').html(response); } } }); } subLocationSelected(); @endisset // sub location get function subLocation(location_id){ $.ajax({ type: "POST", url: "{{ route(routeName().'.locations.sub-location.get') }}", data: {_token:_token,location:location_id}, dataType: "JSON", success: function (response) { $('select[name="sub_location"]').html(''); if (response) { $('select[name="sub_location"]').html(response); } } }); } // filter sub location get function filterSubLocation(location_id){ $.ajax({ type: "POST", url: "{{ route(routeName().'.locations.sub-location.get') }}", data: {_token:_token,location:location_id}, dataType: "JSON", success: function (response) { $('select[name="filter_sub_location"]').html(''); if (response) { $('select[name="filter_sub_location"]').html(response); } } }); } var phone_number = document.querySelector("#phone_number"); window.intlTelInput(phone_number,({ separateDialCode: true, initialCountry: 'ae' })); $('.iti__flag-container').click(function() { var pCountryCode = $(this).children('.iti__selected-flag').attr('title'); var pCountryCode = pCountryCode.replace(/[^0-9]/g,'') var pCountryName = $(this).children('.iti__selected-flag').attr('aria-activedescendant'); var pCountryArray = pCountryName.split('-'); $('input#phone_country_code').val(""); $('input#phone_dialing').val(''); $('#phone_number').val('') $('input#phone_number').val($('#phone_number').val()); $('input#phone_dialing').val(pCountryCode); $('input#phone_country_code').val(pCountryArray[2]); }); $('input#phone_dialing').val('971'); $(document).on('keyup keypress', 'input#phone_number', function(){ let code = $('input#phone_dialing').val(); let phone = $(this).val(); $('input#phone').val('+'+code+phone); }); // number1 var number1 = document.querySelector("#number1"); window.intlTelInput(number1,({ separateDialCode: true, initialCountry: 'ae' })); $('.iti__flag-container').click(function() { var n1CountryCode = $(this).children('.iti__selected-flag').attr('title'); var n1CountryCode = n1CountryCode.replace(/[^0-9]/g,'') var n1CountryName = $(this).children('.iti__selected-flag').attr('aria-activedescendant'); var n1CountryArray = n1CountryName.split('-'); $('input#number1_country_code').val(""); $('input#number1_dialing').val(''); $('#number1').val('') $('input#number1').val($('#number1').val()); $('input#number1_dialing').val(n1CountryCode); $('input#number1_country_code').val(n1CountryArray[2]); }); $('input#number1_dialing').val('971'); $(document).on('keyup keypress', 'input#number1', function(){ let number1_code = $('input#number1_dialing').val(); let number1 = $(this).val(); $('input[name="number1"]').val('+'+number1_code+number1); }); // number2 var number2 = document.querySelector("#number2"); window.intlTelInput(number2,({ separateDialCode: true, initialCountry: 'ae' })); $('.iti__flag-container').click(function() { var n2CountryCode = $(this).children('.iti__selected-flag').attr('title'); var n2CountryCode = n2CountryCode.replace(/[^0-9]/g,'') var n2CountryName = $(this).children('.iti__selected-flag').attr('aria-activedescendant'); var n2CountryArray = n2CountryName.split('-'); $('input#number2_country_code').val(""); $('input#number2_dialing').val(''); $('input#number2').val('') $('input#number2').val($('input#number2').val()); $('input#number2_dialing').val(n2CountryCode); $('input#number2_country_code').val(n2CountryArray[2]); }); $('input#number2_dialing').val('971'); $(document).on('keyup keypress', 'input#number2', function(){ let number2_code = $('input#number2_dialing').val(); let number2 = $(this).val(); $('input[name="number2"]').val('+'+number2_code+number2); }); </script> @endpush