Skip to content

Instantly share code, notes, and snippets.

@zhiephie
Last active December 4, 2022 23:05
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zhiephie/1214bced202fe9d4dad6e79ffdd164df to your computer and use it in GitHub Desktop.
Save zhiephie/1214bced202fe9d4dad6e79ffdd164df to your computer and use it in GitHub Desktop.
Laravel Cheat Sheet & Best Practices

Cheat Sheet

Best Practices

---

Create a Controller

php artisan make:controller MyController

Create a Controller with resource

php artisan make:controller MyController --resource

Create a Model

php artisan make:model Product

Create a Model with migration

php artisan make:model Product -m

Create a Model, Controller & migration

php artisan make:model Product -mc

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment