Laravel5 Resource Routing questions, the most basic problem

Source: Internet
Author: User
Route::resource('admin/category', 'Admin\CategoryController');

Defines the above route, now I want to delete the data, how to enter the Destroy method

Reply content:

Route::resource('admin/category', 'Admin\CategoryController');

Defines the above route, now I want to delete the data, how to enter the Destroy method

By changing the HTTP method of your request,

GET is the request data
POST is adding data
PUT is the update data
Delete is deleting data

The default is get for browser access, and form submission is usually post. To test your removal API, consider using some of the rest API's test tools, which have similar plugins in various browsers.

Behavior handled by the resource controller
Verb path Behavior route name
Get/photo Index Photo.index
Get/photo/create Creating Photo.create
Post/photo Save Photo.store
Get/photo/{photo} display Photo.show
Get/photo/{photo}/edit Edit Photo.edit
Put/patch/photo/{photo} update Photo.update
Delete/photo/{photo} Delete Photo.destroy

Also add a hidden field in the form, name= "_method"

  • Related Article

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.