wilded
6/16/2017 - 10:47 AM

Laravel Installation

Laravel Installation

Install Composer https://getcomposer.org/doc/00-intro.md
php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
php -r "if (hash_file('SHA384', 'composer-setup.php') === '669656bab3166a7aff8a7506b8cb2d1c292f042046c5a994c43155c0be6190fa0355160742ab2e1c88d40d5be660b410') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
php composer-setup.php
php -r "unlink('composer-setup.php');"
sudo mv composer.phar /usr/local/bin/composer
composer global require "laravel/installer=~1.1"
Installing node.js and mom https://coolestguidesontheplanet.com/installing-node-js-on-macos/
Installing Laravel Collective for Form creation https://laravelcollective.com
composer require "laravelcollective/html":"^5.4.0"
Installing CKEditor (Wysiwyg) https://github.com/UniSharp/laravel-ckeditor
terminal -> composer require unisharp/laravel-ckeditor
update config/app.php + Providers + Unisharp\Ckeditor\ServiceProvider::class,
terminal -> php artisan vendor:publish --tag=ckeditor
make sure the route of the javascript is correct: <script src="/laravel/lsapp//vendor/unisharp/laravel-ckeditor/ckeditor.js"></script>
Enabeling User Authentication Terminal -> php artisan make:auth