bugfixes
This commit is contained in:
@@ -72,7 +72,7 @@ class="nav-link active"
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<?php
|
||||
$user = App\User::where('role', '!=', 'user')->orderBy('id', 'ASC')->paginate(10);
|
||||
$user = App\User::where('role', '!=', 'user')->orderBy('id', 'ASC')->simplePaginate(10);
|
||||
?>
|
||||
<!-- Agent table -->
|
||||
<table class="table table-bordered dataTable" style="overflow:hidden;">
|
||||
|
@@ -501,7 +501,7 @@ if ($thread->title != "") {
|
||||
|
||||
<!-- ticket conversations -->
|
||||
<?php
|
||||
$conversations = App\Model\helpdesk\Ticket\Ticket_Thread::where('ticket_id', '=', $tickets->id)->orderBy('id', 'DESC')->paginate(10);
|
||||
$conversations = App\Model\helpdesk\Ticket\Ticket_Thread::where('ticket_id', '=', $tickets->id)->orderBy('id', 'DESC')->simplePaginate(10);
|
||||
$ij = App\Model\helpdesk\Ticket\Ticket_Thread::where('ticket_id', '=', $tickets->id)->first();
|
||||
?>
|
||||
|
||||
|
@@ -92,7 +92,7 @@ class = "nav-item active"
|
||||
$encrypted_token = $encrypter->encrypt(csrf_token());
|
||||
?>
|
||||
<input id="token" type="hidden" value="{{$encrypted_token}}">
|
||||
{!! Form::open(['action'=>'Client\helpdesk\FormController@postedForm','method'=>'post', 'enctype'=>'multipart/form-data']) !!}
|
||||
{!! Form::open(['route'=>'client.form.post','method'=>'post', 'enctype'=>'multipart/form-data']) !!}
|
||||
|
||||
<article class="hentry">
|
||||
|
||||
|
@@ -56,7 +56,7 @@
|
||||
$encrypted_token = $encrypter->encrypt(csrf_token());
|
||||
?>
|
||||
<input id="token" type="hidden" value="{{$encrypted_token}}">
|
||||
{!! Form::open(['action'=>'Client\helpdesk\FormController@postedForm','method'=>'post']) !!}
|
||||
{!! Form::open(['route'=>'client.form.post','method'=>'post']) !!}
|
||||
<div>
|
||||
<div class="content-header">
|
||||
<h4>Ticket {!! Form::submit(Lang::get('lang.send'),['class'=>'form-group btn btn-info pull-right'])!!}</h4>
|
||||
|
Reference in New Issue
Block a user