Package Data | |
---|---|
Maintainer Username: | PaladinDev |
Package Create Date: | 2017-02-07 |
Package Last Update: | 2017-02-07 |
Language: | HTML |
License: | MIT |
Last Refreshed: | 2024-11-23 03:15:24 |
Package Statistics | |
---|---|
Total Downloads: | 11 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 1 |
Total Forks: | 0 |
Total Open Issues: | 0 |
This is a base theme which can be used as-is or extended by other themes.
Add the require in your composer.json file:
"require": {
...
"paladindigital/laravel-foundation": "*"
}
If you dont already have the service provider registered in your config/app.php then add it also
'providers' => [
...
PaladinDigital\LaravelThemes\ServiceProvider::class,
]
If you install the taskforcedev/laravel-support package this provides the ability to set a sitewide master layout which will be used in all views.
This saves you having to set the longform view name in all page templates. Alternatively you could create your own shared data object.
The following meta tags will be populated if provided by controllers (the easiest way to do this is to create a method on your base controller to populate a shared data object then pass this along with any extra page specific data to your views).