orchestra / view
View Component for Orchestra Platform
Fund package maintenance!
Liberapay
paypal.me/crynobone
Installs: 95 215
Dependents: 1
Suggesters: 0
Security: 0
Stars: 6
Watchers: 3
Forks: 3
Open Issues: 0
Requires
- php: ^7.3 || ^8.0
- illuminate/view: ^8.0
- orchestra/contracts: ^6.0
- orchestra/memory: ^6.0
- orchestra/support: ^6.0
Requires (Dev)
- orchestra/testbench: ^6.17
- dev-master / 7.0.x-dev
- 6.x-dev
- v6.0.0
- 5.x-dev
- v5.0.0
- 4.x-dev
- v4.0.0
- 3.8.x-dev
- v3.8.1
- v3.8.0
- 3.7.x-dev
- v3.7.2
- v3.7.1
- v3.7.0
- 3.6.x-dev
- v3.6.2
- v3.6.1
- v3.6.0
- 3.5.x-dev
- v3.5.0
- 3.4.x-dev
- v3.4.0
- 3.3.x-dev
- v3.3.0
- v3.2.1
- v3.2.0
- v3.1.2
- v3.1.1
- v3.1.0
- v3.0.1
- v3.0.0
- v2.2.3
- v2.2.2
- v2.2.1
- v2.2.0
- v2.1.4
- v2.1.3
- v2.1.2
- v2.1.1
- v2.1.0
- v2.0.6
- v2.0.5
- v2.0.4
- v2.0.3
- v2.0.2
- v2.0.1
- v2.0.0
This package is auto-updated.
Last update: 2024-11-18 18:59:09 UTC
README
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.
Version Compatibility
Installation
To install through composer, run the following command from terminal:
composer require "orchestra/view"
Configuration
Next add the service provider in config/app.php
.
'providers' => [ // ... Orchestra\View\DecoratorServiceProvider::class, Orchestra\View\ViewServiceProvider::class, Orchestra\Memory\MemoryServiceProvider::class, ],