📦 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