Skip to content

Commit c0133c9

Browse files
committed
edited the name of a route
1 parent 4ed8b3f commit c0133c9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

resources/views/epay_webhook/test.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@
198198
</div>
199199
@endif
200200

201-
<form action="{{ route('epaywebhook.post') }}" method="post" class="form mainForm">
201+
<form action="{{ route('epay_webhook_tester.post') }}" method="post" class="form mainForm">
202202
@csrf
203203
<div class="form__field">
204204
<input type="text" name="invoice_id" class="form__input" placeholder="Invoice ID"

routes/web.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55

66
Route::middleware(['web'])->group(function () {
77
Route::get('/epay-webhook-tester', [EpayWebhookController::class, 'test']);
8-
Route::post('/epay-webhook-tester', [EpayWebhookController::class, 'test_store'])->name('epaywebhook.post');
8+
Route::post('/epay-webhook-tester', [EpayWebhookController::class, 'test_store'])->name('epay_webhook_tester.post');
99
});

0 commit comments

Comments
 (0)