Laravel
Laravel is a free and open-source PHP framework used to develop web applications, known for its ease of use, clear structure, and features that streamline development.
Start a Laravel Project
To start a Laravel project, you will need the latest versions of PHP, NodeJS with Yarn or NPM, and Composer. The script below will install PHP, Composer, and Laravel on your local machine. After installation, open and close the Terminal or PowerShell.
NodeJS with NPM or YARN is required
Windows
# Run as administrator in PowerShell
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://php.new/install/windows/8.4'))
macOS
# Run in Terminal
/bin/bash -c "$(curl -fsSL https://php.new/install/mac/8.4)"
Linux
# Run in Terminal
/bin/bash -c "$(curl -fsSL https://php.new/install/mac/8.4)"
Creating an Application
laravel new example-app
cd example-app
npm install && npm run build
composer run dev
Done! Your application will be available at localhost:8000
Install Laravel on cPanel
To install Laravel on cPanel, which uses Apache, create the .htaccess
files, compress the entire project (including vendor
and node_modules
), and upload it to the public_html
directory on your server.
Alternatively, you can set up a deployment using Git™ Version Control hooks within cPanel.
- Create a file named
.htaccess
inside the project's root directory and paste the following XML:
<IfModule mod_rewrite.c>
RewriteEngine On
# Change website.com to your domain name
RewriteCond %{HTTP_HOST} ^website.com [NC]
RewriteRule ^(.*)$ https://website.com/$1 [L,R=301]
RewriteRule ^(.*)$ public/$1 [L]
</IfModule>
- Create a file named
.htaccess
inside the/public
directory of the project and paste the following XML:
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews -Indexes
</IfModule>
RewriteEngine On
# Handle Authorization Header
RewriteCond %{HTTP:Authorization} .
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} (.+)/$
RewriteRule ^ %1 [L,R=301]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>
More
Find the official documentation at Laravel Installation