2017 © Pedro Peláez
 

library laravel-theme

Theme package for Laravel

image

felipepodesta/laravel-theme

Theme package for Laravel

  • Friday, April 28, 2017
  • by felipepodesta
  • Repository
  • 0 Watchers
  • 0 Stars
  • 19 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 6 % Grown

The README.md

Laravel Theme

Theme package for Laravel., (*1)

Table Of Contents

Installation

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'));
}

//

Changelog

Refer to the Changelog for a full history of the project., (*6)

Support

The following support channels are available at your fingertips:, (*7)

Security Vulnerabilities

If you discover any security related issues, please email Felipe Podestá instead of using the issue tracker., (*8)

Contributing & Protocols

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)

Credits

License

The MIT License (MIT). Please see License File for more information., (*11)

(c) 2004-2017 Felipe Podestá, Some rights reserved., (*12)

The Versions

28/04 2017

dev-master

9999999-dev

Theme package for Laravel

  Sources   Download

MIT

The Requires

 

28/04 2017

dev-develop

dev-develop

Theme package for Laravel

  Sources   Download

MIT

The Requires

 

28/04 2017

v0.0.0

0.0.0.0

Theme package for Laravel

  Sources   Download

MIT

The Requires