%PDF- %PDF-
Direktori : /var/www/html/car_rent/ |
Current File : /var/www/html/car_rent/RESTful - instructions.txt |
RESTful (all possible methods/actions: Verb Path Action Route Name ---------------------------------------------------- GET /users index users.index GET /users/{id} show users.show GET /users/create create users.create GET /users/{id}/edit edit users.edit POST /users store users.store PUT /users/{id} update users.update DELETE /users/{id} destroy users.destroy Methods needed/used: Verb Action Description -------------------------------------------- GET index list/grid GET show/{:id} view details GET create open new/empty form GET {id}/edit open edit form POST store save/update DELETE destroy/{:id} delete ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ PUT update handled by store //list all routes php artisan route:list php artisan make:controller customers --except=update php artisan make:controller Core\\Controllers\\CurrencyController composer dump-autoload