orchestral / view by crynobone

View Component for Orchestra Platform
94,093
6
3
Package Data
Maintainer Username: crynobone
Maintainer Contact: crynobone@gmail.com (Mior Muhammad Zaki)
Package Create Date: 2013-04-08
Package Last Update: 2021-04-18
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-04-19 15:11:49
Package Statistics
Total Downloads: 94,093
Monthly Downloads: 130
Daily Downloads: 6
Total Stars: 6
Total Watchers: 3
Total Forks: 3
Total Open Issues: 0

View Component for Orchestra Platform

View Component is Orchestra Platform approach to deliver themeable application that support extensions. The functionality evolves by modifying how Illuminate\View\ViewFileFinder would resolve which file, which would first look into the current active theme folder, before resolving it cascading-ly.

This would allow extension (or even packages) to have it's own set of view styling while developer can maintain a standardise overall design through out the project using a theme.

Build Status Latest Stable Version Total Downloads Latest Unstable Version License Coverage Status

Table of Content

Version Compatibility

Laravel | View :----------|:---------- 5.5.x | 3.5.x 5.6.x | 3.6.x 5.7.x | 3.7.x 5.8.x | 3.8.x@dev

Installation

To install through composer, simply put the following in your composer.json file:

{
    "require": {
        "orchestra/view": "^3.5"
    }
}

And then run composer install from the terminal.

Quick Installation

Above installation can also be simplify by using the following command:

composer require "orchestra/view=^3.5"

Configuration

Next add the service provider in config/app.php.

'providers' => [

    // ...

    Orchestra\View\DecoratorServiceProvider::class,
    Orchestra\View\ViewServiceProvider::class,
    Orchestra\Memory\MemoryServiceProvider::class,
],