Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 1.68 KB

File metadata and controls

43 lines (34 loc) · 1.68 KB

Caffeinated Themes

Laravel Source Build Status License

Caffeinated Themes gives the means to group together a set of views and assets for Laravel 5.0. This gives an easy way to further decouple the way your web application looks from your code base.

Features

  • Supports Caffeinated Modules
  • Supports both the Blade and Twig templating engines
  • Intelligent fallback view support
  • Child/parent theme inheritance
  • Theme components, easily create re-usable UI components

Documentation

You will find user friendly documentation here: Themes Documentation

Quick Installation

Begin by installing the package through Composer. The best way to do this is through your terminal via Composer itself:

composer require caffeinated/themes

Once this operation is complete, simply add both the service provider and facade classes to your project's config/app.php file:

Service Provider

'Caffeinated\Themes\ThemesServiceProvider',

Facades

'Theme'     => 'Caffeinated\Themes\Facades\Theme',
'Component' => 'Caffeinated\Themes\Facades\Component',

And that's it! With your coffee in reach, start building some awesome themes!