whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
Modules
/
Webhooks
/
Resources
/
views
/
webhooks-log
/
Upload File:
files >> //home/kckglobal/www/portal/Modules/Webhooks/Resources/views/webhooks-log/index.blade.php
@extends('layouts.app') @push('datatable-styles') @include('sections.datatable_css') @endpush @section('filter-section') <x-filters.filter-box> <!-- SEARCH START--> <div class="task-search d-flex py-1 pr-lg-3 px-0 border-right-grey align-items-center"> <form class="w-100 mr-1 mr-lg-0 mr-md-1 ml-md-1 ml-0 ml-lg-0"> <div class="input-group bg-grey rounded"> <div class="input-group-prepend"> <span class="input-group-text border-0 bg-additional-grey"> <i class="fa fa-search f-13 text-dark-grey"></i> </span> </div> <input type="text" class="form-control f-14 p-1 border-additional-grey" id="search-text-field" placeholder="@lang('app.startTyping')"> </div> </form> </div> <!-- SEARCH END --> </x-filters.filter-box> @endsection @section('content') <!-- CONTENT WRAPPER START --> <div class="content-wrapper"> <!-- Webhook log Start --> <div class="d-flex flex-column w-tables rounded mt-3 bg-white table-responsive"> {!! $dataTable->table(['class' => 'table table-hover border-0 w-100']) !!} </div> <!-- Webhook log End --> </div> <!-- CONTENT WRAPPER END --> @endsection @push('scripts') @include('sections.datatable_js') <script> $('#webhooks-log-table').on('preXhr.dt', function(e, settings, data) { var searchText = $('#search-text-field').val(); data['searchText'] = searchText; }); const showTable = () => { window.LaravelDataTables["webhooks-log-table"].draw(false); } $('#search-text-field').on('keyup', function() { if ($('#search-text-field').val() != "") { $('#reset-filters').removeClass('d-none'); showTable(); } }); </script> @endpush
Copyright ©2021 || Defacer Indonesia