项目作者: CupOfTea696

项目描述 :
Simple indexed looping
高级语言: PHP
项目地址: git://github.com/CupOfTea696/Counter.git
创建时间: 2016-01-25T16:13:58Z
项目社区:https://github.com/CupOfTea696/Counter

开源协议:

下载


Latest Stable Version Total Downloads Latest Unstable Version
StyleCI
License

Counter

Simple indexed looping.

Easily loop over any Traversable or Array while keeping track of the index. It will also accept any other variable types, and cast those to an array.

With Counter you can both keep track of the current index and iteration while traversing any variable, regardless of which keys are being used. In addition to that, Counter also provides a stack of useful methods to check if the current iteration matches set requirements, for example Counter::first() and Counter::even().

Quickstart

  1. $ composer require cupoftea/counter ^1.0

Laravel integration

Add the Counter ServiceProvider to your config/app.php.

  1. 'providers' => [
  2. /*
  3. * Laravel Framework Service Providers...
  4. */
  5. 'Illuminate\Foundation\Providers\ArtisanServiceProvider',
  6. 'Illuminate\Auth\AuthServiceProvider',
  7. 'Illuminate\Bus\BusServiceProvider',
  8. ...
  9. 'CupOfTea\Counter\CounterServiceProvider',
  10. ],

Optionally you can also add the Counter Facade if you wish to use it.

  1. 'aliases' => [
  2. 'App' => 'Illuminate\Support\Facades\App',
  3. 'Artisan' => 'Illuminate\Support\Facades\Artisan',
  4. 'Auth' => 'Illuminate\Support\Facades\Auth',
  5. ...
  6. 'Counter' => 'CupOfTea\Counter\Facades\Counter',
  7. ],