📡 You're offline — showing cached content
New version available!
Quick Access
Tutorials Laravel Framework What is Laravel?

What is Laravel?

5 min read Quiz at the end
Overview of Laravel features: Eloquent ORM, Blade templates, Artisan CLI, queues, and its rich ecosystem.

What is Laravel?

Laravel is the most popular PHP framework, built on the MVC pattern. It provides elegant syntax, powerful tools, and a huge ecosystem to build modern web applications.

  • Eloquent ORM for database interactions
  • Blade templating engine
  • Artisan CLI for code generation
  • Built-in authentication, queues, events, and caching
  • Laravel Sail for Docker-based development
composer create-project laravel/laravel my-app
cd my-app
php artisan serve   # http://localhost:8000
Topic Quiz · 5 questions

Test your understanding before moving on

1. Who created Laravel?
💡 Laravel was created by Taylor Otwell and first released in 2011.
2. Which command starts the Laravel dev server?
💡 php artisan serve starts the built-in PHP development server on port 8000.
3. What does ORM stand for?
💡 ORM maps database rows to PHP objects.
4. Which template engine does Laravel use?
💡 Laravel uses the Blade templating engine.
5. Laravel follows which pattern?
💡 Laravel follows the Model-View-Controller architectural pattern.