Skip to content

Instantly share code, notes, and snippets.

@RaymondBenc
Created February 18, 2016 12:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RaymondBenc/d3cfd93644e356a7dcaf to your computer and use it in GitHub Desktop.
Save RaymondBenc/d3cfd93644e356a7dcaf to your computer and use it in GitHub Desktop.
Sample Start.php for Themes
<?php
block(1, 'core.index-member', function() {
return view('@Flavor/test.html');
});
block(1, 'core.index-member', function() {
echo "Hello World!";
$users = db()->select('*')->from(':user')->limit(5)->all();
d($users);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment