Eloquent PHP framework for web artisans
Laravel provides an expressive Model-View-Controller framework for PHP developers. It ships with built-in database migrations, Eloquent ORM relationships, mail dispatchers, and queue pipelines.
Route::get('/users', function () {
return User::with('profile')->get();
});