Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/emmyaniedev/laravel_customer_crud
https://github.com/emmyaniedev/laravel_customer_crud
Last synced: 13 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/emmyaniedev/laravel_customer_crud
- Owner: EmmyAnieDev
- Created: 2024-12-11T03:26:42.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-12-11T03:52:36.000Z (2 months ago)
- Last Synced: 2024-12-11T04:28:22.602Z (2 months ago)
- Language: PHP
- Size: 615 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.