poldixd/laravel-blade-repeat

0.3 2024-02-29 10:23 UTC

This package is auto-updated.

Last update: 2024-04-29 10:47:01 UTC


README

Blade directive for repeating content for Laravel 9.x and Laravel 10.x and PHP >= 8.1

Installation

composer require poldixd/laravel-blade-repeat

Usage

@repeat(3)
	<div>Repeat me three times.</div>
@endrepeat

Output:

<div>Repeat me three times.</div>
<div>Repeat me three times.</div>
<div>Repeat me three times.</div>

You can use the $iteration variable inside the loop for displaying the actual iteration count:

@repeat(3)
	<div>Repeat me three times. I'am number #{{ $iteration }}</div>
@endrepeat

Output:

<div>Repeat me three times. I'am number #1</div>
<div>Repeat me three times. I'am number #2</div>
<div>Repeat me three times. I'am number #3</div>

Changelog

Please see CHANGELOG.

Testing

composer test

License

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