Last active
February 13, 2019 15:03
-
-
Save Dorf/9a47da45a54030141b2ce41de6bf4db7 to your computer and use it in GitHub Desktop.
[Controller Page functions for Roots / Sage] #controller #sage #roots #functions #page #laravel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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