2017 © Pedro Peláez
 

library blade-extended

Extension to add control directives attributes to your Blade templates (bd-foreach, bd-inner-foreach, bd-if, bd-attr, bd-class and other).

image

sleeping-owl/blade-extended

Extension to add control directives attributes to your Blade templates (bd-foreach, bd-inner-foreach, bd-if, bd-attr, bd-class and other).

  • Wednesday, February 18, 2015
  • by sleeping-owl
  • Repository
  • 3 Watchers
  • 11 Stars
  • 71 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 5 Versions
  • 0 % Grown

The README.md

SleepingOwl BladeExtended

Build Status Latest Stable Version License Code Climate, (*1)

SleepingOwl BladeExtended is a simple library, adding bd-foreach, bd-inner-foreach, bd-if and bd-class attribute directives support to your blade templates., (*2)

Create multiple li elements, but ignore item with name "_dev"
 <ul>
    <li bd-foreach="$items as $item" bd-if="$item->name !== '_dev'">
        <a href="#">{{{ $item->name }}}</a>
    </li>
 </ul>
Using bd-inner-foreach you can create multiple element for each array item
 <ul bd-inner-foreach="$items as $i => $item">
    <li>{{{ $i }}}</li>
    <li>{{{ $item }}}</li>
 </ul>
Add class to element by condition

Note: Conditional classes will be added to existing ones or create class attribute if it doesnt exist., (*3)

 <div class="my-class" bd-class="$condition ? 'class-to-add', $condition2 ? 'second-class-to-add'">
    …
 </div>

Installation

  1. Require this package in your composer.json and run composer update (or run composer require sleeping-owl/blade-extended:1.x directly):, (*4)

    "sleeping-owl/blade-extended": "1.*"
  2. After composer update, add service providers to the app/config/app.php, (*5)

    'SleepingOwl\BladeExtended\BladeExtendedServiceProvider',
  3. All done! Now you can use new directives in your blade templates., (*6)

Documentation

Documentation can be found at blade-extended documentation., (*7)

Admin was written by Sleeping Owl for the Laravel framework and is released under the MIT License. See the LICENSE file for details., (*8)

The Versions

18/02 2015

dev-master

9999999-dev http://sleeping-owl-blade-extended.gopagoda.com

Extension to add control directives attributes to your Blade templates (bd-foreach, bd-inner-foreach, bd-if, bd-attr, bd-class and other).

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template extension blade extended

05/11 2014

1.2.0

1.2.0.0 http://sleeping-owl-blade-extended.gopagoda.com

Extension to add control directives attributes to your Blade templates (bd-foreach, bd-inner-foreach, bd-if, bd-attr, bd-class and other).

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template extension blade extended

02/11 2014

1.1.0

1.1.0.0 http://sleeping-owl-blade-extended.gopagoda.com

Extension to add bd-foreach, bd-inner-foreach, bd-if, bd-attr and bd-class attribute directives to your Blade templates.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template extension blade extended

02/11 2014

1.0.1

1.0.1.0 http://sleeping-owl-blade-extended.gopagoda.com

Extension to add bd-foreach, bd-inner-foreach, bd-if and bd-class attribute directives to your Blade templates.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template extension blade extended

01/11 2014

1.0.0

1.0.0.0 http://sleeping-owl-blade-extended.gopagoda.com

Extension to add bd-foreach, bd-inner-foreach, bd-if and bd-class attribute directives to your Blade templates.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template extension blade extended