This provides a very, very simple wrapper for ACF. The only meaningful "feature" it adds in this version is the ability to query several fields at once, and return them in a compiled array.
First, install the package:
composer require livy/plumbing-acf
Once it's installed, you can access its methods like so:
Livy\Plumbing\ACF\Simple::getField('my-field');
To save some typing, you can always use use
:
use Livy\Plumbing\ACF\Simple as ACF;
ACF::getField('my-field');
This method can accept several fields to query at once, and will return them as an array (or a collection, if Illuminate\Collection
) is available. See the method source for documentation.