Carbon admin laravel is a boilerplate template made to you get started your Laravel application. 🚀
$ git clone https://github.com/isamuhiro/carbon-admin-laravel.git my-awesome-app && cd my-awesome-app
If apache
sudo apt-get install apache2
If nginx
sudo apt-get install nginx
sudo apt-get install php7.2 php7.2-mbstring php7.2-bcmath php7.2-xml php7.2-mysql php7.2-fpm mariadb-server
$ composer install && cp .env.example .env
Configure an user in mysql
mysql -uroot -p
CREATE DATABASE homestead;
CREATE USER 'homestead'@'localhost' IDENTIFIED BY 'secret';
GRANT ALL PRIVILEGES ON homestead.* TO homestead@localhost;
FLUSH PRIVILEGES;
$ php artisan key:generate && php artisan migrate:fresh --seed
Then you should good to go and start develop your laravel application. 🙌
Pull requests are welcome.
Any troubleshootings shuold be posted on issues
.