help desk admin

This commit is contained in:
merdan 2020-05-05 15:48:38 +05:00
parent e200a62298
commit aaf9ff9d94
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
<a href="{{ Request::url().'/'.$entry->getKey() }}/replay" class="btn btn-xs btn-default"><i class="fa fa-reply"></i> Replay</a>
<a href="{{ route('ticket.replay',['id'=>$entry->getKey()]) }}/replay" class="btn btn-xs btn-default"><i class="fa fa-reply"></i> Replay</a>

View File

@ -24,5 +24,5 @@ Route::group([
CRUD::resource('account', 'AccountCrudController');
CRUD::resource('helpTopic','HelpTopicCrudController');
CRUD::resource('helpTicket','HelpTicketCrudController');
Route::get('helpTopic/{id}/replay', 'HelpTopicCrudController@replay');
Route::get('helpTicket/{id}/replay', 'HelpTopicCrudController@replay')->name('ticket.replay');
}); // this should be the absolute last line of this file