| 1 | <?php namespace App\Providers; |
||
| 6 | class ExtendedValidationServiceProvider extends ServiceProvider |
||
| 7 | { |
||
| 8 | |||
| 9 | public function boot() |
||
| 10 | { |
||
| 11 | Validator::extend('password', 'App\Services\ExtendedValidationService@validatePassword'); |
||
| 12 | Validator::extend('name', 'App\Services\ExtendedValidationService@validateName'); |
||
| 13 | } |
||
| 14 | |||
| 15 | public function register() |
||
| 19 | |||
| 20 | } |