10

I used this line of code to show next post title on my app

<span class="blog-title-next"> {{ $post->nextPost()['title'] }} </span>

How can I limit the title name to show only first 10 characters?

Thanks.

smartrahat
  • 5,381
  • 6
  • 47
  • 68
Nikola
  • 207
  • 1
  • 4
  • 17

1 Answers1

50

You could use the str_limit() helper function:

{{ str_limit($post->nextPost()['title'], 10) }}

For newer version of laravel

use Illuminate\Support\Str;

$truncated = Str::limit('The quick brown fox jumps over the lazy dog', 20, ' (...)');

// The quick brown fox (...)
Naga Penmetsa
  • 384
  • 5
  • 16
Pantelis Peslis
  • 14,930
  • 5
  • 44
  • 45