trim whitespace laravel blade code example
Example: laravel trim string blade
#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 !')