All posts

Getting Started with Laravel

A quick overview of Laravel and how to run your first app.

Bryl Lim · · 1 min read

Laravel is a powerful PHP framework for building web applications. Here are a few reasons to try it:

  1. Eloquent ORM – Working with the database feels natural.
  2. Blade templates – Clean, readable views without the noise.
  3. Artisan – The CLI makes migrations, seeders, and tasks a breeze.

Quick start

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

That's it. You're running locally. From here, define routes, create models, and build something useful.