hnhdigital-os/laravel-extras

Provides a collection of extras for Laravel 5.
17 1
Install
composer require hnhdigital-os/laravel-extras
PHP:>=5.4.0
License:MIT
Last Updated:Sep 8, 2017
Links: GitHub  ·  Packagist
Maintainer: bluora

Laravel Extras

Provides various extra features and functionality for Laravel 5.

Latest Stable Version Total Downloads Latest Unstable Version License

Build Status StyleCI Test Coverage Issue Count Code Climate

This package has been developed by H&H|Digital, an Australian botique developer. Visit us at 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:

    'providers' => [
        ...
        Bluora\LaravelExtras\BladeDirectiveServiceProvider::class,
        ...
    ];

Usage

In a blade template:

@call('test()')
@csrf
@raw(echo 'This is a raw command')

Would render to:

<?php test(); ?>
<?= csrf_field(); ?>
<?php echo 'This is a raw command'; ?>

Contributing

Please see CONTRIBUTING for details.

Credits

License

The MIT License (MIT). Please see License File for more information.

Related Packages

wilsonpinto/laravel-blade-directives

This package adds custom directives for the Laravel 5 blade engine.

71 3
curtisblackwell/laravel-blade-directive-yaml-injector

A short description of what your package does

15 1
philo/laravel-blade

Use the simple and yet powerful Laravel Blade templating engine as a standalone...

686,443 354
jeroennoten/laravel-adminlte

Easy AdminLTE v4 integration with Laravel

5,302,669 4,001