Fixing bug where custom validation messages in bundle language files were not getting picked up.
This commit is contained in:
parent
b7ac1b75af
commit
53e8f9b774
|
@ -692,7 +692,7 @@ protected function message($attribute, $rule)
|
|||
{
|
||||
return $this->messages[$custom];
|
||||
}
|
||||
elseif (Lang::has($custom = "validation.custom.{$custom}", $this->language))
|
||||
elseif (Lang::has($custom = "{$bundle}validation.custom.{$custom}", $this->language))
|
||||
{
|
||||
return Lang::line($custom)->get($this->language);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue