How to display a specific word from a string in laravel

Created at 27-Aug-2021 , By samar

How to display a specific word from a string in laravel

In this session, we are going to try to solve the "How to display a specific word from a string in laravel" puzzle by using the computer language.

You can display the specific word from string by converting the string to an array and after that you can get the value of each array element by passing the key to the array.
  • Display first word from name in laravel view after getting the name of user

    //It will display the first name of user
    @php  $userName =  explode(' ', $user->name);  @endphp
    <p>{{ ucfirst($userName[0]) }}</p>
    

    This code snippet will help you to get the first word from the user name. Sometimes we have a full name in a single column field and we want to display the first name instead of surname then we can display the first name from the full name in the laravel view without changing the controller or model code in laravel.

Back to code snippet queries related laravel

If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.

Buy Me A Coffee

Don't forget to share this article! Help us spread the word by clicking the share button below.

We appreciate your support and are committed to providing you valuable and informative content.

We are thankful for your never ending support.