Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

how to install laravel

# Via Laravel Installer
composer global require laravel/installer
laravel new project name
php artisan serve
         or
#Via Composer Create-Project
composer create-project --prefer-dist laravel/laravel:^7.0 project name
php artisan serve
Comment

laravel install

composer create-project laravel/laravel <example-app>
Comment

laravel installer

# Laravel installer
composer global require laravel/installer
# install laravel project using this command
laravel new example-app
Comment

laravel composer install


composer create-project laravel/laravel .

php artisan serve
Comment

laravel install by composer

composer create-project --prefer-dist laravel/laravel blog 
cd example-app
php artisan serve
Comment

INSTALL LARAVEL VIA COMPOSER

composer create-project laravel/laravel {directory} 
Comment

laravel install

composer create-project --prefer-dist laravel/laravel blog "5.6.*"
Comment

laravel install

To install laravel v9 you will need apache2, php8 and composerv2 (Ubuntu 20.04/Ubuntu 18.04)
sudo apt update
sudo apt upgrade

Install and start apache2
sudo apt install apache2
sudo service apache2 start
Open: http://localhost:80
sudo service apache2 stop

Install php8
sudo add-apt-repository -y ppa:ondrej/php
sudo apt-get update
sudo apt-get install php8.0 php8.0-cli php8.0-common php8.0-xml php8.0-curl
php -v

Enable mods
sudo a2enmod php8.0
sudo a2enmod headers
sudo a2enmod rewrite

Install composerv2
cd /home/user
curl -sS https://getcomposer.org/installer -o composer-setup.php
sudo php composer-setup.php --install-dir=/usr/local/bin --filename=composer
compsoer -V

Install laravel project
composer create-project laravel/laravel example-app
php artisan key:generate --ansi
php artisan serve

Configuration file for apache2 example
cd /etc/apache2
sudo a2dissite 000-default.conf
cd /sites-available
sudo touch appName.conf

sudo nano appName.conf
Copy, paste and configurate:
---------------------------------------------------------------------------------
<VirtualHost *:80>
	ServerName name.local

    // If project is based on multiple env (admin/frontend)
	SetEnv ACTIVE_MODULE frontend
	
	DocumentRoot "pathDirectory/laravel/public"
	<Directory "pathDirectory/laravel/public">
	    Options Indexes FollowSymLinks MultiViews
	    AllowOverride All
	    Require all granted
	    Order allow,deny
	    Allow from all
	</Directory>

	ErrorLog /var/log/apache2/fileName.err
	CustomLog /var/log/apache2/fileName combined
</VirtualHost>
---------------------------------------------------------------------------------

sudo a2ensite appName.conf
sudo service apache2 restart
or
sudo service apache2 start
Comment

laravel install

composer create-project laravel/laravel contoh-app
cd contoh-app
php artisan serve
Comment

Install laravel using composer

composer create-project --prefer-dist laravel/laravel blog "5.4.*"
Comment

install composer laravel

composer require spatie/laravel-permission
Comment

PREVIOUS NEXT
Code Example
Shell :: Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-idlotqqi/cryptography/ 
Shell :: how to install SunraPhpSimpleHtmlDomParser composer 
Shell :: powershell get all computers in ou 
Shell :: bash run program in loop 
Shell :: sudo without password 
Shell :: how to delete a commit from a branch 
Shell :: nextcloud scan files 
Shell :: tree process linux commnad 
Shell :: oh my zsh ubuntu 20.04 
Shell :: create patch in git 
Shell :: whats home directory variable linux 
Shell :: Unable to boot device due to insufficient system resources. 
Shell :: npm install without dev dependencies 
Shell :: kernel headers were not found vmware kali linux 
Shell :: how to start xampp in ubuntu from terminal 
Shell :: bash length of array 
Shell :: linux memes 
Shell :: git discard all local changes 
Shell :: pass parameters to bash script 
Shell :: how to reset and change remote url in git 
Shell :: ip route delete linux 
Shell :: how to delete last push github 
Shell :: github restore previous commit 
Shell :: install and import gsap in vue 
Shell :: install github cli ubuntu 
Shell :: wsl settings 
Shell :: vlc doesnt open after install ubuntu 
Shell :: linux samba service 
Shell :: kde up maxfps 
Shell :: how to create alias in linux 
ADD CONTENT
Topic
Content
Source link
Name
3+9 =