dev-master
9999999-devTheme package for Laravel
MIT
The Requires
- php >=7.0.0
- laravel/framework 5.4.*
dev-develop
dev-developTheme package for Laravel
MIT
The Requires
- php >=7.0.0
- laravel/framework 5.4.*
Wallogit.com
2017 © Pedro Peláez
Theme package for Laravel
Theme package for Laravel., (*1)
To install in Laravel (current):, (*2)
composer require felipepodesta/laravel-theme
Add the service provider to your config/app.php file:, (*3)
<?php
/*
'providers' => [
[...]
*/
FelipePodesta\Theme\ServiceProvider::class,
/*
[...]
],
*/
Add this to your AppServiceProvider:, (*4)
<?php
public function register()
{
$this->app->view->addLocation(resource_path('themes/site'));
}
//
or:, (*5)
<?php
if ($this->app->request->is('login*', 'password*', 'register*', 'admin*')) {
$this->app->view->addLocation(resource_path('themes/admin'));
} else {
$this->app->view->addLocation(resource_path('themes/site'));
}
//
Refer to the Changelog for a full history of the project., (*6)
The following support channels are available at your fingertips:, (*7)
If you discover any security related issues, please email Felipe Podestá instead of using the issue tracker., (*8)
Thank you for considering contributing to this project! The contribution guide can be found in contributing.md and conduct.md., (*9)
Bug reports, feature requests, and pull requests are very welcome., (*10)
The MIT License (MIT). Please see License File for more information., (*11)
(c) 2004-2017 Felipe Podestá, Some rights reserved., (*12)
Theme package for Laravel
MIT
Theme package for Laravel
MIT