Я сделал свой API-интерфейс в Laravel
Я проверял Route::post('register', 'UserController@register');
используя http://localhost/cloudengine-sandbox/cloudsandboxbackend/public/api/register
и работает нормально.
У меня есть проблемы, когда я хотел проверить шорткоды.
api.php
Route::post('register', 'UserController@register');
Route::post('login', 'UserController@login');
Route::get('profile', 'UserController@getAuthenticatedUser');
Route::get('/shortcodes', 'ShortcodeController@index')
->name('shortcodes.index');
Route::post('/shortcodes', 'ShortcodeController@store')
->name('shortcodes.store');
Route::get('/shortcodes/{shortcode}', 'ShortcodeController@show')
->name('shortcodes.show');
Route::put('/shortcodes/{shortcode}', 'ShortcodeController@update')
->name('shortcodes.update');
Route::delete('/shortcodes/{shortcode}', 'ShortcodeController@destroy')
->name('shortcodes.destroy');
Что мне ввести POSTMAN для проверки каждого из коротких кодов.
Я набрал http://localhost/cloudengine-sandbox/cloudsandboxbackend/public/api/shortcodes/show
Я ожидал, хорошо, но дал 404 Не найдено