COUPDEGRACES's avatar

Uppercase in blade laravel .

HI , i have a post content iwth 100+ character text , so im give a limit using Str::limit like this

{{ Str::limit($data_agenda->content,110) }}

can i use str uppercase with str::limit with 1 line ? or i can use different method to make this succes?

0 likes
3 replies
Sinnbeck's avatar
Sinnbeck
Best Answer
Level 102

Do you mean

{{ Str::upper(Str::limit($data_agenda->content,110)) }}

Please or to participate in this conversation.