We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22f0dfb commit a3abc58Copy full SHA for a3abc58
src/Views/tickets/show/script.blade.php
@@ -61,9 +61,9 @@
61
62
// Complete modal status_id change
63
$('#ticket-complete-modal #status_id').change(function(){
64
- var url = '{{ route($setting->grab('main_route').'.edit', ['id' => $ticket->id, 'parameters' => 'complete/yes/status_id/']) }}';
+ var url = '{{ route($setting->grab('main_route').'.edit', ['id' => $ticket->id]) . '/complete/yes/status_id/' }}';
65
$('#ticket-complete-modal #edit-with-values')
66
- .prop('href', url + '/' + $(this).val());
+ .prop('href', url + $(this).val());
67
});
68
69
// Complete modal submit button
0 commit comments