Skip to the content.

LARAVEL 11

Laravel is a free, open-source PHP web framework designed for building web applications following the model–view–controller (MVC) architectural pattern. It emphasizes elegant syntax, modern tooling, and developer productivity.

Getting Started

  1. Prerequisites

    • PHP >= 8.3
    • Composer
    • Node.js & NPM
    • Database (MySQL, PostgreSQL, SQLite)
  2. Installation

    composer create-project laravel/laravel example-app
    cd example-app
    php artisan serve
    
  3. Key Commands

    # Database
    php artisan migrate
    php artisan db:seed
    
    # Development
    php artisan make:controller
    php artisan make:model
    php artisan make:migration
    
    # Maintenance
    php artisan cache:clear
    php artisan config:clear
    php artisan route:cache
    

Documentation

Resources

Useful Tools

Community and Support