How to capitalize first letter in Laravel Blade

后端 未结 4 822
無奈伤痛
無奈伤痛 2021-02-06 21:28

I\'m using laravel (5.1) blade template engine with the localization feature.

There is a language file messages.php within the /resources/lang/en/

4条回答
  •  孤城傲影
    2021-02-06 22:10

    Another way to make capitalize first letter using PHP and blade.

    Controller

    return view('stock.uk-lse', ['name' => 'djan']);
    

    View

    {{ ucfirst($name) }}

提交回复
热议问题