0

Completed

0%

Progress

0

Starred

01

What are the different ways to define routes in Laravel?

beginner#Routing
02

Explain the MVC pattern and how Laravel implements it.

beginner#MVC
03

What are the most useful Artisan commands and how to create custom commands?

beginner#Artisan
04

What is Middleware and how do you create custom middleware?

beginner#Middleware
05

What are the key features of Laravel Blade templating engine?

beginner#Blade
06

How do you create and manage database migrations in Laravel?

beginner#Migrations
07

What is Eloquent ORM and how do you use basic CRUD operations?

beginner#Eloquent Basics
08

How do you perform validation in Laravel using Form Requests and Validators?

beginner#Validation
09

How does Laravel's authentication system work?

beginner#Authentication Basics
10

Explain the complete request lifecycle in Laravel.

beginner#Request Lifecycle
11

How do you seed and use database factories in Laravel?

beginner#Database
12

What are named routes and how do you generate URLs for them?

beginner#Beginner
13

What is the difference between `redirect()->route()` and `redirect()->to()`?

beginner#Beginner
14

How do you handle file uploads in Laravel?

beginner#Beginner
15

What is the purpose of `php artisan tinker`?

beginner#Beginner
16

What are accessors and mutators in Eloquent?

beginner#Beginner
17

What is route model binding and how does it work?

beginner#Beginner
18

What are Blade components and when should you use them?

beginner#Beginner
19

How do you create and use custom validation rules?

beginner#Beginner
20

What is the purpose of the `.env` file in Laravel?

beginner#Beginner
21

How do you create and use Laravel helpers?

beginner#Beginner
22

What are the main differences between Laravel 8, 10, 11, and 12?

intermediate#Version Differences
23

What are Authentication Guards and how do you use them?

intermediate#Authentication
24

What was the role of Kernel.php and how has it changed in Laravel 11+?

intermediate#Kernel
25

Explain Laravel's Service Container and dependency injection.

intermediate#Service Container
26

What are Service Providers and how do they work?

intermediate#Service Providers
27

How do Laravel Facades work under the hood?

intermediate#Facades
28

Compare Dependency Injection vs not using DI with examples.

intermediate#Dependency Injection
29

How do Events and Listeners work in Laravel?

intermediate#Events & Listeners
30

How do you implement queues and jobs in Laravel?

intermediate#Queues & Jobs
31

What are Laravel Gates and Policies for authorization?

intermediate#Intermediate
32

How do you implement role-based permissions in Laravel?

intermediate#Intermediate
33

What is the difference between `bind()` and `singleton()` in the service container?

intermediate#Intermediate
34

What are contextual bindings in Laravel's service container?

intermediate#Intermediate
35

How do you handle database migrations with foreign key constraints?

intermediate#Intermediate
36

What are polymorphic relationships in Eloquent?

intermediate#Intermediate
37

How do you implement soft deletes in Laravel?

intermediate#Intermediate
38

What are local and global scopes in Eloquent?

intermediate#Intermediate
39

How do you handle API authentication with Laravel Sanctum?

intermediate#Intermediate
40

How do you use Laravel's task scheduling?

intermediate#Intermediate
41

How do you handle file storage with multiple disks in Laravel?

intermediate#Intermediate
42

How do you implement caching in Laravel?

intermediate#Intermediate
43

How do you handle email sending and notifications in Laravel?

intermediate#Intermediate
44

What are the best practices for building REST APIs in Laravel?

advanced#REST API
45

When should you use Controllers vs Services vs Actions in Laravel?

advanced#Architecture
46

How do you implement Repository Pattern in Laravel?

advanced#Repository Pattern
47

How do you optimize Eloquent queries and avoid N+1 problem?

advanced#Eloquent Relationships
48

How do you handle database transactions and prevent deadlocks?

advanced#Transactions & Deadlocks
49

How do you optimize Laravel for high-traffic applications?

advanced#Advanced
50

How does Laravel Octane work and when should you use it?

advanced#Advanced
51

How do you implement event sourcing in Laravel?

advanced#Advanced
52

How do you implement CQRS (Command Query Responsibility Segregation) in Laravel?

advanced#Advanced
53

How do you implement a message broker with RabbitMQ in Laravel?

advanced#Advanced
54

How do you implement WebSocket broadcasting with Laravel and Pusher?

advanced#Advanced
56

How do you implement a multi-tenant architecture in Laravel?

advanced#Advanced
57

How do you implement a GraphQL API in Laravel using Lighthouse?

advanced#Advanced
58

How do you implement serverless Laravel using Vapor?

advanced#Advanced
59

How do you implement OAuth2 authentication with Laravel Passport?

advanced#Advanced
60

How do you implement a microservices architecture with Laravel?

advanced#Advanced