How to Remove White Space from a String in Laravel 9
In this lesson, we are going to see how to remove white space from a string in Laravel 9, there is a new helper introduced recently that removes whitespace from the beginning, ending, and in between of a string.
The new Str::squish helper method
The new squish() helper method removes whitespace from the beginning, ending, and in between of a string.
use Illuminate\Support\Str;
Str::squish(' DARIJA CODING ');
// DARIJA CODING