---: Deploying Your Application | webally.co.za label: Deploying Application order: 4 authors:


# Laravel 8 Vite Vue Project

https://laravel-vite.innocenzi.dev/guide/

# Installation

# Via Laravel Installer.

First, download the Laravel installer using Composer.

composer global require "laravel/installer=~1.1"

Make sure to place the ~/.composer/vendor/bin directory in your PATH (or C:\%HOMEPATH%\AppData\Roaming\Composer\vendor\bin if working with Windows) so the laravel executable is found when you run the laravel command in your terminal.

Once installed, the simple laravel new command will create a fresh Laravel installation in the directory you specify. For instance, laravel new blog would create a directory named blog containing a fresh Laravel installation with all dependencies installed. This method of installation is much faster than installing via Composer.

# Via Composer

The Laravel framework utilizes Composer for installation and dependency management. If you haven't already, start by installing Composer

Now you can install Laravel by issuing the following command from your terminal: