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}}
You can use the php function str_pad
to pad a string with leading zeroes.
{{ str_pad($voters->id, 4, '0', STR_PAD_LEFT) }}