Haehnchen / idea-php-laravel-plugin

Laravel Framework Plugin for PhpStorm / IntelliJ IDEA
MIT License
572 stars 108 forks source link

Route group controller #285

Open muharremozdemir opened 2 years ago

muharremozdemir commented 2 years ago

use App\Http\Controllers\OrderController;

Route::controller(OrderController::class)->group(function () { Route::get('/orders/{id}', 'show'); Route::post('/orders', 'store'); });

When show is clicked, it does not go to the relevant method.