
How to display a specific word from a string in laravel
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.
If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.
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.
Random Code Snippet Queries: Laravel
- SQLSTATE[42S22]: Column not found: 1054 Unknown column 'users.post_id' in 'where clause
- Composer\Exception\NoSslException
- How to pass variable from controller to model in Laravel
- How to validate URL with https using regex in laravel
- How to get laravel errors folder in views directory in laravel
- How to create and run user seeder in laravel
- How to add active class to menu item in laravel
- How to get data from two tables in laravel
- Use withCount() to Calculate Child Relationship Records
- How to add foreign key in laravel using migration
- Store logged in user details in session and display in view in laravel
- Update last created record in Laravel
- Check if Relationship Method Exists in Laravel
- How to check duplicate entry in laravel
- How to add class to tr in table using foreach in laravel
- How to create laravel project using composer
- Call to undefined relationship [user] on model [App\Models\Post]
- Call to a member function pluck() on array
- Attempt to read property "avatar" on null in Laravel
- Create records using relationship in laravel
- How to call Laravel route in jQuery
- Recursive function example code PHP Laravel
- Get all users except the followings users in overtrue laravel-follow
- Laravel file size validation not working
- Eager loading dynamically in laravel