Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hnhdigital-os/laravel-extras
Provides extras for Laravel 5.
https://github.com/hnhdigital-os/laravel-extras
Last synced: about 7 hours ago
JSON representation
Provides extras for Laravel 5.
- Host: GitHub
- URL: https://github.com/hnhdigital-os/laravel-extras
- Owner: hnhdigital-os
- License: mit
- Created: 2016-11-22T00:19:06.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-09-08T01:55:33.000Z (over 7 years ago)
- Last Synced: 2024-04-03T23:21:20.958Z (10 months ago)
- Language: PHP
- Size: 7.81 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Laravel Extras
Provides various extra features and functionality for Laravel 5.
[![Latest Stable Version](https://poser.pugx.org/hnhdigital-os/laravel-extras/v/stable.svg)](https://packagist.org/packages/hnhdigital-os/laravel-extras) [![Total Downloads](https://poser.pugx.org/hnhdigital-os/laravel-extras/downloads.svg)](https://packagist.org/packages/hnhdigital-os/laravel-extras) [![Latest Unstable Version](https://poser.pugx.org/hnhdigital-os/laravel-extras/v/unstable.svg)](https://packagist.org/packages/hnhdigital-os/laravel-extras) [![License](https://poser.pugx.org/hnhdigital-os/laravel-extras/license.svg)](https://packagist.org/packages/hnhdigital-os/laravel-extras)
[![Build Status](https://travis-ci.org/hnhdigital-os/laravel-extras.svg?branch=master)](https://travis-ci.org/hnhdigital-os/laravel-extras) [![StyleCI](https://styleci.io/repos/74417746/shield?branch=master)](https://styleci.io/repos/74417746) [![Test Coverage](https://codeclimate.com/github/hnhdigital-os/laravel-extras/badges/coverage.svg)](https://codeclimate.com/github/hnhdigital-os/laravel-extras/coverage) [![Issue Count](https://codeclimate.com/github/hnhdigital-os/laravel-extras/badges/issue_count.svg)](https://codeclimate.com/github/hnhdigital-os/laravel-extras) [![Code Climate](https://codeclimate.com/github/hnhdigital-os/laravel-extras/badges/gpa.svg)](https://codeclimate.com/github/hnhdigital-os/laravel-extras)
This package has been developed by H&H|Digital, an Australian botique developer. Visit us at [hnh.digital](http://hnh.digital).
## Provides
* Blade directives to reduce php in a blade template.
## Install
Via composer:
`$ composer require hnhdigital-os/laravel-extras dev-master`
Enable additional blade directives by editing config/app.php:
```php
'providers' => [
...
Bluora\LaravelExtras\BladeDirectiveServiceProvider::class,
...
];
```## Usage
In a blade template:
```php
@call('test()')
@csrf
@raw(echo 'This is a raw command')
```Would render to:
```php
= csrf_field(); ?>
```
## Contributing
Please see [CONTRIBUTING](https://github.com/hnhdigital-os/laravel-extras/blob/master/CONTRIBUTING.md) for details.
## Credits
* [Rocco Howard](https://github.com/therocis)
* [All Contributors](https://github.com/hnhdigital-os/laravel-extras/contributors)## License
The MIT License (MIT). Please see [License File](https://github.com/hnhdigital-os/laravel-extras/blob/master/LICENSE) for more information.