![]() Server : Apache/2 System : Linux server-15-235-50-60 5.15.0-164-generic #174-Ubuntu SMP Fri Nov 14 20:25:16 UTC 2025 x86_64 User : gositeme ( 1004) PHP Version : 8.2.29 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname Directory : /home/gositeme/domains/pdf-ai.com/private_html/resources/views/user/search/ |
@extends('layouts.app')
@section('css')
<!-- Data Table CSS -->
<link href="{{URL::asset('plugins/datatable/datatables.min.css')}}" rel="stylesheet" />
@endsection
@section('page-header')
<!-- PAGE HEADER -->
<div class="page-header mt-5-7">
<div class="page-leftheader">
<h4 class="page-title mb-0">{{ __('Search Results Data') }}</h4>
<ol class="breadcrumb mb-2">
<li class="breadcrumb-item"><a href="{{route('user.dashboard')}}"><i class="fa fa-search mr-2 fs-12"></i>{{ __('User') }}</a></li>
<li class="breadcrumb-item active" aria-current="page"><a href="{{url('#')}}"> {{ __('Search Results') }}</a></li>
</ol>
</div>
</div>
<!-- END PAGE HEADER -->
@endsection
@section('content')
<div class="row">
<div class="col-lg-12 col-md-12 col-xm-12">
<div class="card border-0">
<div class="card-header">
<h3 class="card-title">{{ __('Seach Keyword') }}: <span class="text-info">{{ $searchValue }}</span></h3>
</div>
<div class="card-body pt-4">
<!-- SET DATATABLE -->
<table id='resultsTable' class='table' width='100%'>
<thead>
<tr>
<th width="7%">{{ __('Workbook') }}</th>
<th width="15%">{{ __('Document Name') }}</th>
<th width="9%">{{ __('Template Used') }}</th>
<th width="5%">{{ __('Created On') }}</th>
<th width="5%">{{ __('Language') }}</th>
<th width="5%">{{ __('Words Used') }}</th>
<th width="5%">{{ __('Actions') }}</th>
</tr>
</thead>
</table> <!-- END SET DATATABLE -->
</div>
</div>
</div>
</div>
@endsection
@section('js')
<!-- Data Tables JS -->
<script src="{{URL::asset('plugins/datatable/datatables.min.js')}}"></script>
<script type="text/javascript">
$(function () {
"use strict";
var data = <?php echo $data; ?>;
let table = $('#resultsTable').DataTable({
"lengthMenu": [[25, 50, 100, -1], [25, 50, 100, "All"]],
responsive: true,
colReorder: true,
"order": [[ 6, "desc" ]],
language: {
"emptyTable": "<div><img id='no-results-img' src='{{ URL::asset('img/files/no-result.png') }}'><br>{{ __('No search results were found') }}</div>",
},
"bFilter": false,
"paging": false,
pagingType : 'full_numbers',
processing: false,
serverSide: false,
data: data.original.data,
columns: [
{
data: 'workbook',
name: 'workbook',
orderable: true,
searchable: true
},
{
data: 'custom-title',
name: 'custom-title',
orderable: true,
searchable: true
},
{
data: 'template_name',
name: 'template_name',
orderable: true,
searchable: true
},
{
data: 'created-on',
name: 'created-on',
orderable: true,
searchable: true
},
{
data: 'custom-language',
name: 'custom-language',
orderable: true,
searchable: true
},
{
data: 'tokens',
name: 'tokens',
orderable: true,
searchable: true
},
{
data: 'actions',
name: 'actions',
orderable: false,
searchable: false
},
]
});
});
</script>
@endsection