goszowski/blade-extended

1.0.1 2017-03-20 12:43 UTC

This package is auto-updated.

Last update: 2024-04-08 06:25:58 UTC


README

Laravel 4 version: https://github.com/sleeping-owl/blade-extended

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

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.

 <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 :

    "goszowski/blade-extended": "1.*"
    
  2. After composer update, add service providers to the config/app.php

    Goszowski\BladeExtended\BladeExtendedServiceProvider::class,
    
  3. All done! Now you can use new directives in your blade templates.