Latest in branch 3.2
3.2.14
Released 21 Mar 2013
(13 years ago)
SoftwareLaravel
Version3.2
Status
End of life
Initial release3.2.0
22 May 2012
(14 years ago)
Latest release3.2.14
21 Mar 2013
(13 years ago)
End of bug fixes30 Nov 2012
(Ended 13 years, 6 months ago)
End of security fixes31 May 2013
(Ended 13 years ago)
Release noteshttps://github.com/laravel/laravel/releases/tag/v3.2.14
Source codehttps://github.com/laravel/laravel/tree/v3.2.14
Documentationhttps://laravel.com/docs
Downloadhttps://laravel.com/docs/master/installation
Laravel 3.2 ReleasesView full list

What Is New in Laravel 3.2

Category Key Changes
New Features Database seeding, view composers, Blade templating engine
Improvements Artisan CLI enhancements, database query logging
Bug Fixes Various fixes across the framework
Deprecated Legacy functionality marked for removal

What database improvements does Laravel 3.2 introduce?

Laravel 3.2 adds database seeding, a feature that lets you populate your database with test data. This is a game-changer for development and testing workflows. You can now define seed classes and run them easily through Artisan.

The update also includes enhanced database query logging. This helps developers quickly see which queries are executed during a request, making debugging and optimization much more straightforward.

How does the new Blade templating engine work?

Laravel 3.2 introduces the Blade templating engine, which provides a cleaner, more powerful syntax for writing views. Blade templates are compiled into plain PHP code for maximum performance.

It supports template inheritance with sections and layouts, making your view code more organized and maintainable. In practice, this means less repetitive HTML and more focus on your application's logic.

What are view composers and why are they useful?

View composers allow you to bind data to a view every time it is rendered. This is perfect for code you need to execute across multiple views, like a navigation bar that shows a user's notifications.

Instead of repeating the same data-fetching logic in every controller, you can centralize it in a view composer. This keeps your controllers lean and your code DRY.

What Artisan command-line improvements were made?

The Artisan command-line tool received several updates to make development smoother. New commands were added to support the freshly introduced features like database seeding.

These enhancements streamline common tasks, allowing developers to generate boilerplate code and manage database data directly from the terminal.

FAQ

Is the Blade templating engine a replacement for plain PHP views?
No, Blade is an optional but highly recommended alternative. You can still use plain PHP views (.php), but Blade offers a more expressive syntax and features like template inheritance.

How do I create and run a database seeder?
You define a seeder class that implements the Seeder interface. Then, you can execute it using the new Artisan command: php artisan db:seed.

Can I use multiple view composers on a single view?
Yes, you can attach multiple composers to a single view. This allows you to modularize the data preparation logic for complex views.

Does query logging impact performance?
It can, which is why it's typically used only in a development environment. The logging helps you identify slow or redundant queries before deploying to production.

Is Laravel 3.2 a major breaking change from 3.1?
No, it's a feature release that maintains backward compatibility. However, it does deprecate some old functionality, so you should check the release notes for specifics.

Releases In Branch 3.2

VersionRelease date
3.2.1421 Mar 2013
(13 years ago)
3.2.1310 Jan 2013
(13 years ago)
3.2.1206 Nov 2012
(13 years ago)
3.2.1131 Oct 2012
(13 years ago)
3.2.1027 Sep 2012
(13 years ago)
3.2.927 Sep 2012
(13 years ago)
3.2.825 Sep 2012
(13 years ago)
3.2.701 Sep 2012
(13 years ago)
3.2.628 Aug 2012
(13 years ago)
3.2.517 Aug 2012
(13 years ago)
3.2.409 Aug 2012
(13 years ago)
3.2.316 Jun 2012
(13 years ago)
3.2.130 May 2012
(14 years ago)
3.2.022 May 2012
(14 years ago)
3.2.0-beta.210 May 2012
(14 years ago)
3.2.0-beta.104 May 2012
(14 years ago)