박깅잭
박깅잭

Reputation: 47

Display Unsigned zero fill id with leading zero in laravel

How to display unsigned zero fill id in laravel blade template. My id has a value of 0001 but displaying in views just 1. This is my code:

{{$voters->id}}

Upvotes: 0

Views: 2309

Answers (1)

Jerodev
Jerodev

Reputation: 33196

You can use the php function str_pad to pad a string with leading zeroes.

{{ str_pad($voters->id, 4, '0', STR_PAD_LEFT) }}

Upvotes: 1

Related Questions