This package provides custom directives so you can easily access Statamic data in your Blade templates.
- PHP 7.4+
- Statamic v3
You can install this package via composer using:
composer require edalzell/blade-directives
The package will automatically register itself.
@collection('pages', ['where' => 'title:My Title,author:Erin', 'limit' => 3, 'orderBy' => 'title:desc'])
{{ $entry['title'] }}
@endcollection
Use this when you have Statamic data but it's a Value
object. This will return a keyed array with all the fields as string/ints/arrays (recursively).
@data($theValueObject')
{{ $fieldYouWant }}
@enddata
Gets all the data in an entry. In the example below the data is a replicator, so you have to walk through the sets.
@entry('the_collection_handle', 'entry-slug')
@foreach($replicator as $set)
<p>Type is {{ $set['type'] }}</p>
@include("partials/{$set['type']}", $set)
@endforeach
@endentry
@globalset('footer')
{{ $set_variable }}
@endglobalset
@globalset('footer', 'set_variable')
@nav('footer')
{{ $item['title'] }}
@endnav
You can use the same parameters as the nav
tag.
@nav('collection::pages', ['from' => '/', 'show_unpublished' => true, 'include_home' => true])
{{ $item['title'] }}
@endnav
@site
{{ $short_locale }}
@endsite
@site('short_locale')
@taxonomy('tags')
<p>Title is {{ $term['title'] }}</p>
@endtaxonomy
Run the tests with:
vendor/bin/phpunit
Please see CHANGELOG for more information what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.