Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/PhiloNL/Laravel-Blade
Use the simple and yet powerful Laravel Blade templating engine as a standalone component.
https://github.com/PhiloNL/Laravel-Blade
Last synced: 5 days ago
JSON representation
Use the simple and yet powerful Laravel Blade templating engine as a standalone component.
- Host: GitHub
- URL: https://github.com/PhiloNL/Laravel-Blade
- Owner: PhiloNL
- Created: 2014-02-12T17:52:04.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2022-12-21T11:06:23.000Z (almost 2 years ago)
- Last Synced: 2024-10-28T20:00:15.706Z (10 days ago)
- Language: PHP
- Size: 22.5 KB
- Stars: 359
- Watchers: 22
- Forks: 94
- Open Issues: 18
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
### Installation (Blade Laravel 5.1)
The package can be installed via Composer by requiring the "philo/laravel-blade": "3.*" package in your project's composer.json.```json
{
"require": {
"philo/laravel-blade": "3.*"
}
}
```### Installation (Blade Laravel 4)
The package can be installed via Composer by requiring the "philo/laravel-blade": "2.*" package in your project's composer.json.```json
{
"require": {
"philo/laravel-blade": "2.*"
}
}
```### Usage
```php
view()->make('hello')->render();
```You can use all blade features as described in the Laravel 5.1 documentation:
https://laravel.com/docs/5.1/blade