Fix pagination url
This commit is contained in:
2
resources/views/themes/default1/client/helpdesk/ckeckticket.blade.php
Normal file → Executable file
2
resources/views/themes/default1/client/helpdesk/ckeckticket.blade.php
Normal file → Executable file
@@ -439,7 +439,7 @@ $thread = App\Model\helpdesk\Ticket\Ticket_Thread::where('ticket_id', '=', \Cryp
|
||||
?>
|
||||
|
||||
<div class="float-right" style="margin-top:-30px;margin-bottom:-30px">
|
||||
<?php echo $conversations->setPath(url('check_ticket/{' . $id . '}'))->render(); ?>
|
||||
<?php echo $conversations->setPath(route('check_ticket', ['id' => $id]))->render(); ?>
|
||||
</div>
|
||||
<br/><br/>
|
||||
</div>
|
||||
|
@@ -335,7 +335,7 @@ foreach ($conversations as $conversation) {
|
||||
<?php }
|
||||
?>
|
||||
<div class="pull-right" style="margin-top:-30px;margin-bottom:-30px">
|
||||
<?php echo $conversations->setPath(url('show-ticket/{' . $tickets->id . '}/' . $token))->render(); ?>
|
||||
<?php echo $conversations->setPath(route('show.ticket', ['id' => $tickets->id, 'token' => $token]))->render(); ?>
|
||||
</div>
|
||||
<br/><br/>
|
||||
@if(Session::has('success1'))
|
||||
|
Reference in New Issue
Block a user