Skip to content

Instantly share code, notes, and snippets.

@calebporzio
Created July 11, 2018 16:16
Show Gist options
  • Save calebporzio/f78dfd93b1b1beaff338eb0ef74b4478 to your computer and use it in GitHub Desktop.
Save calebporzio/f78dfd93b1b1beaff338eb0ef74b4478 to your computer and use it in GitHub Desktop.
@route blade directive
<?php
Blade::directive('route', function ($expression) {
return '<?php route(' . $expression . '); ?>';
});
@crnkovic
Copy link

Haven't tested it, but aren't you missing echoing (printing) the content?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment