Laravel

Laravel

Laravel is a free and open-source PHP web framework, created by Taylor Otwell and intended for the development of web applications following the model–view–controller architectural pattern and based on Symfony.

See Laravel on Wikipedia.

Run Laravel applications in Brap right away.

Brap is pre-configured to run Laravel applications out-of-the-box. Start a new Laravel application, clone an existing Laravel application, and run them right away!

Create new Laravel application

To create a new Laravel via the Laravel installer, run:

laravel new myblog

Or, to create a new Laravel project via Composer, run:

composer create-project laravel/laravel myblog

Run Laravel application

To run a Laravel application, run:

cd myblog

php artisan serve

php artisan serve --host=0.0.0.0

Laravel running

Screenshot: Laravel running in the web browser

Keywords

  • laravel
  • php
  • web
  • framework
  • mvc
  • high-level
  • backend
  • frontend
  • fullstack

Back to top