You will find HTML and other very useful helper to your views:
<?php incLayout('welcomeHeader'); ?>
//is useful because it avoid you to create an include
//with all the path to layout folder
//Please remember includes are not highly recomended
//because the path its not relative to the view
//path its relative to root-dir/public/index.php
//So Booster provide a helper to get easy to handle includes
What if I want to create Layouts in other folder?
Its easy just use incView() helper, this helper is going to be touch in Views section, but alternativly you could find the definition in cheatcode section, there are a list of all helpers.
By the moment, you could go to:
$ resources/Views/layouts/
In that path you will find the welcomeHeader.php file, you could rewrite it or create your own,
Its a very simple HTML template, but it have one helper that is commonly use for layouts as header.php or footer.php or any other order that you prefer.
<?php asset('css/welcome/images/logo-1.png');?>
//helper as shorcut to public/assets folder
//Its important to tell that for security reasons
//ONLY PUBLIC FOLDER COULD STORE ASSETS, DOCUMENTS, IMAGES
//OR ANY OTHER SOURCE LIKE CSS THEMES AND LIBRARIES OR JS SCRIPTS
Later in view section is going to be touch details and helpers of this section, by the moment you could use any CDN or your own styles and change it, or take a look to
$ public/assets/
To discover some great features that are already added to the framework, like:
Bootstrap 3.
Bootstrap 4.
MaterializeCSS
SB-ADMIN
SB-ADMIN-TWO
MATERIAL-DASHBOARD THEME (created specially for PHP Booster)
And other cools stuffs like FontAwesome 4 and Free version 5, The included with Bootstrap 3 glyphicons, some interesting fonts of google fonts, all locally to include with asset() helper.