
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
- Laravel 5.4 save data to database
- How to add foreign key in laravel using migration
- The POST method is not supported for this route. Supported methods: PUT.
- Split an Eloquent Collection by half in Laravel
- Remove several global scope from query
- Method Illuminate\Database\Eloquent\Collection::appends does not exist
- How to check records exist in loaded relationship in Laravel blade view
- Get latest record by created at in Laravel
- How to change default timestamp fields name in Laravel
- Syntax error or access violation: 1072 Key column 'role_id' doesn't exist in table (SQL: alter table `users` add constraint `users_role_id_foreign` foreign key (`role_id`) references `roles` (`id`))
- Get comma separated email from input array
- How to display pivot table column value in laravel
- Add class to body in laravel view
- How to create and run user seeder in laravel
- How to get last record from object collection in laravel
- Attempt to read property "avatar" on null in Laravel
- Insert data with form validation using ajax in laravel
- Method Illuminate\Http\Request::validated does not exist
- Permanently delete a record in laravel
- How to get all posts which contains comments in laravel
- Class 'App\Providers\Auth' not found
- How to get random string in Laravel
- If condition in foreach loop in laravel
- Json encode method in laravel
- Get last week data in Laravel