dev-master
9999999-dev
The Requires
by Andreas Göransson
Wallogit.com
2017 © Pedro PelĂĄez
Create a laravel project composer create laravel/laravel my-project, (*1)
Add to composer.json
"wetcat/board": "dev-master", (*2)
Edit database configuration in my-project/app/config/database.php, (*3)
Add service providers 'Wetcat\Board\BoardServiceProvider',, (*4)
Run composer update, (*5)
Run php artisan izi:init, (*6)
Edit my-project/app/config/packages/wetcat/board/config.php/, (*7)
Remove the default root ('/') route in my-project/app/routes.php because it will interfer with the routes in this package., (*8)
Finally set the folder permissions for my-project/app/storage, (*9)
Delete User.php, (*10)
This package comes with some configuration options, to change them for your installation run the following command., (*11)
php artisan config:publish wetcat/board
The package uses Bootstrap for frontend, per default it will use the bootswatch CDN to load a Yeti theme. However, if you want to use a locally stored bootstrap stylesheet all you need to do is include either public/css/bootstrap.min.css or public/css/bootstrap.css files, they will always have precedence over the CDN., (*12)
You can also change what bootstrap CDN to use in the config., (*13)
Note that if you're using a locally stored bootstrap stylesheet you will likely need to install the glyphicon set locally as well, bootstrap uses Glyphicon halflings set, (*14)
Recommended is to use http://pikock.github.io/bootstrap-magic/app/index.html#!/editor or similar tool to generate the css. Don't forget the fonts!, (*15)
You can also add your own custom styles to public/css/my-project.css or public/css/my-project.min.css, just make sure to set the my-project title in the config for your installation for this to work., (*16)