This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>Carts</title> | |
</head> | |
<body class="antialiased" style="background-color: black"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apt-get update && apt-get upgrade -y | |
apt-get install software-properties-common -y | |
sudo apt-get install language-pack-en -y | |
export LANG=en_GB.UTF-8 | |
export LC_ALL=en_GB.UTF-8 | |
add-apt-repository ppa:ondrej/php -y | |
apt update | |
apt install php7.2 php7.2-common php7.2-cli php7.2-fpm php7.2-bcmath -y | |
apt-get install php-gmp -y | |
apt upgrade -y |