Deploy Laravel Project On Heroku
  Getting Started with Laravel on Heroku  This guide will walk you through the configuration and deployment of a Laravel 5 application. For a general introduction to using PHP on Heroku, please refer to Getting Started with PHP on Heroku.    Prerequisites:  PHP (and ideally some Laravel) knowledge.  A Heroku user account. Signup is free and instant.  Familiarity with the Getting Started with PHP on Heroku guide, with PHP, Composer, and the Heroku CLI installed on your computer.  Creating a Laravel application  The application in this tutorial is based on the Laravel Installation guide. It’s worth a read before following the instructions in this article.    Installing a new Laravel project:   The composer create-project command is one of the ways you can bootstrap a new project based on the laravel/laravel standard application skeleton. The command below sets it up in a directory named hello_laravel using the latest version of the framework.   After downloading an extensive number of de...