https://github.com/jaxon-php/jaxon-blade
Jaxon view renderer for Blade templates
https://github.com/jaxon-php/jaxon-blade
Last synced: about 2 months ago
JSON representation
Jaxon view renderer for Blade templates
- Host: GitHub
- URL: https://github.com/jaxon-php/jaxon-blade
- Owner: jaxon-php
- License: bsd-3-clause
- Created: 2017-05-04T23:50:16.000Z (about 8 years ago)
- Default Branch: main
- Last Pushed: 2024-11-15T19:35:17.000Z (8 months ago)
- Last Synced: 2024-11-15T20:28:26.457Z (8 months ago)
- Language: PHP
- Size: 12.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Jaxon View for Blade
====================Render Blade templates in Jaxon applications.
Installation
------------Install this package with Composer.
```json
"require": {
"jaxon-php/jaxon-blade": "^3.0"
}
```Usage
-----Foreach directory containing Blade templates, add an entry to the `app.views` section in the configuration.
```php
'app' => array(
'views' => array(
'demo' => array(
'directory' => '/path/to/demo/views',
'extension' => '.blade.php',
'renderer' => 'blade',
),
),
),
```In the application classes, this is how to render a view in this directory.
```php
$this->view()->render('demo::/sub/dir/file');
```Read the [documentation](https://www.jaxon-php.org/docs/v3x/advanced/views.html) to learn more about views in Jaxon applications.