2017 © Pedro Peláez
 

library blade-alternate

image

adenfraser/blade-alternate

  • Tuesday, December 2, 2014
  • by AdenFraser
  • Repository
  • 1 Watchers
  • 0 Stars
  • 39 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 3 % Grown

The README.md

Blade Alternate

Blade Alternate is a small extension to blade that adds the common operation of changing values throughout a loop. Now thats a horrible description, so heres an example:, (*1)

@foreach($users as $user)
    <tr class="@alternate('odd', 'even')">...</tr>
@endforeach

Which would result in alternating rows of a table, with the class switching between odd and even every time. This works with any number of arguments, for example, you might see a image gallery with three columns., (*2)

@foreach($images as $image)
    <img src="{{ $img->url }}" class="@alternate('left', 'mid', 'right')" />
@endforeach

Installation

Add adenfraser/blade-alternate to composer.json., (*3)

"adenfraser/blade-alternate": "1.0.*"

Run composer update to pull down the latest version of Blade Alternate. Now open up app/config/app.php and add the service provider to your providers array, after the ViewServiceProvider., (*4)

'providers' => array(
    ...
        'Illuminate\View\ViewServiceProvider',
        'AdenFraser\BladeAlternate\BladeAlternateServiceProvider',
    ...
)

The Versions

02/12 2014

dev-master

9999999-dev

  Sources   Download

The Requires

 

by Avatar AdenFraser

02/12 2014

0.1.1

0.1.1.0

  Sources   Download

The Requires

 

by Avatar AdenFraser

02/12 2014

0.1

0.1.0.0

  Sources   Download

The Requires

 

by Avatar AdenFraser