première lettre de Laravel en majuscules

use Illuminate\Support\Str;

...

$string = Str::ucfirst('foo bar');
Xfantasia