0PricingLogin
PHP Academy · Lesson

Laravel Project Structure

Explore the directory layout and understand each component's role.

What is Laravel?

Laravel is the most popular PHP framework, following the MVC pattern. It provides routing, Eloquent ORM, Blade templates, queues, events, and more out of the box.

Creating a Project

Bootstrap a new Laravel app with Composer.

$ composer create-project laravel/laravel my-app
$ cd my-app
$ php artisan serve

All lessons in this course

  1. Laravel Project Structure
  2. Defining Routes in Laravel
  3. Controllers and Actions
  4. Blade Templates and Views
← Back to PHP Academy