Skip to content

Instantly share code, notes, and snippets.

@mattdfloyd
Created September 28, 2017 19:37
Show Gist options
  • Save mattdfloyd/63d03b2ba8bab054674ff4cbe8c28a6b to your computer and use it in GitHub Desktop.
Save mattdfloyd/63d03b2ba8bab054674ff4cbe8c28a6b to your computer and use it in GitHub Desktop.
Dusk Blade directive
<?php
Blade::directive('dusk', function ($expression) {
if (app()->environment('production')) {
return;
}
return "<?php echo sprintf('dusk=\"%s\"', $expression); ?>";
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment