๐ฆ Artisan - Podstawowe
php artisan list
php artisan help <command>
php artisan tinker
php artisan down
php artisan up
๐๏ธ Migracje
php artisan make:migration create_users_table
php artisan migrate
php artisan migrate:rollback
php artisan migrate:rollback --step=3
php artisan migrate:reset
php artisan migrate:refresh
php artisan migrate:fresh
php artisan migrate:status
๐ฑ Seeders
php artisan make:seeder UserSeeder
php artisan db:seed
php artisan db:seed --class=UserSeeder
php artisan migrate:refresh --seed
๐ญ Factories
php artisan make:factory UserFactory
php artisan make:factory UserFactory --model=User
๐ Modele
php artisan make:model User
php artisan make:model User -m
php artisan make:model User -f
php artisan make:model User -s
php artisan make:model User -c
php artisan make:model User -mfsc
php artisan make:model User -a
๐ฎ Kontrolery
php artisan make:controller UserController
php artisan make:controller UserController --resource
php artisan make:controller UserController --api
php artisan make:controller UserController --model=User
๐ฃ๏ธ Routing
php artisan route:list
php artisan route:list --compact
php artisan route:list --name=user
php artisan route:cache
php artisan route:clear
๐ Middleware
php artisan make:middleware CheckAge
php artisan make:middleware CheckAge --test
๐ Requests
php artisan make:request StoreUserRequest
php artisan make:request UpdateUserRequest
๐จ Views & Components
php artisan make:component Button
php artisan make:component Button --inline
php artisan view:cache
php artisan view:clear
๐ง Mailable
php artisan make:mail WelcomeEmail
php artisan make:mail WelcomeEmail --markdown=emails.welcome
๐ Notifications
php artisan make:notification UserRegistered
php artisan notifications:table
๐๏ธ Resources (API)
php artisan make:resource UserResource
php artisan make:resource UserCollection
php artisan make:resource User --collection
๐ Jobs (Kolejki)
php artisan make:job ProcessPayment
php artisan queue:work
php artisan queue:work --once
php artisan queue:work --timeout=60
php artisan queue:listen
php artisan queue:restart
php artisan queue:failed
php artisan queue:retry all
php artisan queue:flush
php artisan queue:table
๐
Scheduler
php artisan schedule:run
php artisan schedule:list
๐ง Cache
php artisan cache:clear
php artisan cache:forget <key>
php artisan cache:table
โ๏ธ Config
php artisan config:cache
php artisan config:clear
php artisan config:show
๐ Key & Storage
php artisan key:generate
php artisan storage:link
๐งน Optymalizacja
php artisan optimize
php artisan optimize:clear
php artisan clear-compiled
๐งช Testy
php artisan make:test UserTest
php artisan make:test UserTest --unit
php artisan test
php artisan test --filter=UserTest
๐จ Laravel Themer
php artisan theme:create ThemeName
php artisan theme:list
php artisan theme:use ThemeName
php artisan theme:publish
php artisan theme:clear
๐ฆ Laravel Modules - Zarzฤ
dzanie
php artisan module:make Blog
php artisan module:make Blog --plain
php artisan module:list
php artisan module:enable Blog
php artisan module:disable Blog
php artisan module:delete Blog
php artisan module:use Blog
php artisan module:unuse
๐ฆ Modules - Generowanie
php artisan module:make-controller BlogController Blog
php artisan module:make-model Post Blog
php artisan module:make-migration create_posts_table Blog
php artisan module:make-seed PostsTableSeeder Blog
php artisan module:make-factory PostFactory Blog
php artisan module:make-middleware CheckBlogAccess Blog
php artisan module:make-request CreatePostRequest Blog
php artisan module:make-resource PostResource Blog
php artisan module:make-job PublishPost Blog
php artisan module:make-event PostCreated Blog
php artisan module:make-listener SendPostNotification Blog
php artisan module:make-notification PostPublished Blog
php artisan module:make-policy PostPolicy Blog
php artisan module:make-rule ValidPostStatus Blog
php artisan module:make-command SendNewsletterCommand Blog
php artisan module:make-mail PostPublishedMail Blog
php artisan module:make-provider CustomServiceProvider Blog
php artisan module:make-test PostTest Blog
๐ฆ Modules - Migracje
php artisan module:migrate
php artisan module:migrate Blog
php artisan module:migrate-rollback Blog
php artisan module:migrate-reset Blog
php artisan module:migrate-refresh Blog
php artisan module:migrate-status Blog
php artisan module:seed
php artisan module:seed Blog
๐ฆ Modules - Publikowanie
php artisan module:publish Blog
php artisan module:publish-migration Blog
php artisan module:publish-config Blog
php artisan module:install Blog
๐ Make - Pozostaลe
php artisan make:command SendEmails
php artisan make:event UserRegistered
php artisan make:listener SendWelcomeEmail
php artisan make:provider CustomProvider
php artisan make:rule Uppercase
php artisan make:policy UserPolicy
php artisan make:observer UserObserver
php artisan make:cast Json
php artisan make:channel PushChannel
๐ ๏ธ Dodatkowe narzฤdzia
php artisan inspire
php artisan env
php artisan about
๐ก Przydatne kombinacje
php artisan migrate:fresh --seed
php artisan optimize:clear
php artisan make:model Post -a
php artisan route:list --compact
php artisan module:make Blog && php artisan module:migrate Blog --seed