Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/emmyaniedev/laravel_customer_crud


https://github.com/emmyaniedev/laravel_customer_crud

Last synced: 13 days ago
JSON representation

Awesome Lists containing this project

README

        

## RESOURCE CONTROLLER

- When creating a CRUD application in a framework like Laravel, a resource controller is used to generate all necessary actions for handling CRUD operations.

* index: Display a listing of the resource.
* create: Show the form for creating a new resource.
* store: Store a newly created resource in storage.
* show: Display the specified resource.
* edit: Show the form for editing the specified resource.
* update: Update the specified resource in storage.
* destroy: Remove the specified resource from storage.

## FORM CSRF

- Since Form automatcially uses GET method. (@csrf) is not neccessary.