Skip to content

Instantly share code, notes, and snippets.

@Dorf
Last active February 13, 2019 15:03
Show Gist options
  • Save Dorf/9a47da45a54030141b2ce41de6bf4db7 to your computer and use it in GitHub Desktop.
Save Dorf/9a47da45a54030141b2ce41de6bf4db7 to your computer and use it in GitHub Desktop.
[Controller Page functions for Roots / Sage] #controller #sage #roots #functions #page #laravel
class Page extends Controller
{
// Pass on all fields from Advanced Custom Fields to the view
protected $acf = true;
// Pass on only field_1 from Advanced Custom Fields to the view
// protected $acf = 'project_intro_fields';
// Pass on multiple fields from Advanced Custom Fields to the view
// protected $acf = ['field_1', 'field_2'];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment