help desk notification ticketReceived

This commit is contained in:
merdan 2020-05-06 19:50:03 +05:00
parent ed0d7b0e2f
commit 352fcb7dc3
2 changed files with 2 additions and 1 deletions

View File

@ -87,7 +87,7 @@
</div>
<div class="card-footer">
<form action="{{route('',['id' => $entry->getKey()])}}" method="post">
<form action="{{route('ticket.replay.post',['id' => $entry->getKey()])}}" method="post">
@csrf
<div class="form-group custom-theme {{ ($errors->has('text')) ? 'has-error' : '' }}">
{!! Form::label('text', trans("ClientSide.text"), array('class'=>'control-label required')) !!}

View File

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