ademtepe
Results
1
comments of
ademtepe
I have used the solution suggested here for Laravel Collection and it worked: ``` use PragmaRX\Countries\Package\Countries as Country; Collection::macro('decode', function () { return $this->map(function ($value) { return utf8_decode($value); }); });...