Skip to content

Instantly share code, notes, and snippets.

@FrankFlow
Created September 2, 2017 09:22
Show Gist options
  • Select an option

  • Save FrankFlow/e40d7488cd3720a1257b472e6b3510e3 to your computer and use it in GitHub Desktop.

Select an option

Save FrankFlow/e40d7488cd3720a1257b472e6b3510e3 to your computer and use it in GitHub Desktop.
<?php
use Illuminate\Contracts\Validation\ImplicitRule;
class MiaValidationRule implements ImplicitRule
{
public function passes($attribute, $value)
{
return $value > 10;
}
public function message()
{
return ':attribute è necessario più denaro';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment