We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After running php artisan cray Product, the route is added to the routes/web.php like this:
php artisan cray Product
routes/web.php
Route::resource('Product', App\Http\ProductController::class);
instead of:
Route::resource('products', App\Http\ProductController::class);
For Multi-Word Models,
Route::resource('ProgramRequirement', App\Http\ProgramRequirementController::class);
Route::resource('program-requirements', App\Http\ProgramRequirementController::class);
The text was updated successfully, but these errors were encountered:
ac00bd8
JunaidQadirB
No branches or pull requests
After running
php artisan cray Product
, the route is added to theroutes/web.php
like this:instead of:
For Multi-Word Models,
instead of:
The text was updated successfully, but these errors were encountered: