helpers.php 140 B

12345678910
  1. <?php
  2. function test_helper() {
  3. return 'OK';
  4. }
  5. function route_class()
  6. {
  7. return str_replace('.', '-', \Route::currentRouteName());
  8. }