validation on exact length of numeric field in laravel 5
You are looking for the digits
rule. From the docs:
The field under validation must be numeric and must have an exact length of value.
'last4digits' => 'digits:4'
in general case ,say, for a string with arbitrary characters:
'last_not_only_4_digits' => 'size:4'