laravel framework installation

Is that possible to install laravel on my domain?if yes what is the optimum way to do it?

Our hosting is not really optimized for Laravel and other complex web application frameworks, but I think it’s possible.

To upload Laravel, I think you need to do the following:

  1. Copy the contents of the public folder to the root directory.
  2. Install the Composer dependencies.
  3. Prepare the .env file with all the required settings for your hosting account.
  4. Upload the Laravel files to the htdocs folder of the domain you want to run it on.

It’s not the prettiest way to do it, but it should work.

how to install the Composer dependencies.

@Mouhamad said:
how to install the Composer dependencies.

Check the Laravel docs, it contains instructions on how to create a Laravel project and install the Composer dependencies on your own computer. You can then upload the dependencies to your hosting account.