There are two very simple commands to use when creating a new laravel application.

With Componse:

composer create-project laravel/laravel  [APP-NAME]

With Laravel

laravel new [APP-NAME]

Its that simple. After you have created your project cd into it

cd [APP-NAME]

Now you can start the project and view in browser:

php artisan serve

Done