laravel make init code example
Example 1: how to install new project in laravel
You can create project by 2 ways:
First is installing it without defining version:
composer create-project laravel/laravel yourProjectName
Secondly you can install by defining version:
composer create-project laravel/laravel="VersionOfYourChoice" yourProjectName
Example 2: php run server laravel
Route::get('users', function()
{
$users = User::all();
return View::make('users')->with('users', $users);
});