#at AppServiceProvider  Blade::directive('trim', function ($string) {             $string = urldecode($string);             $string = trim($string);             return "<?php echo $string; ?>"         });  #And use on Blade template  @trim('Hello world !')

Read more of this post