Edit File: ValidateEmailEnd.php
<?php namespace App\Rules; use Illuminate\Contracts\Validation\Rule; class ValidateEmailEnd implements Rule { /** * Create a new rule instance. * * @return void */ public function __construct() { // } /** * Determine if the validation rule passes. * * @param string $attribute * @param mixed $value * @return bool */ public function passes($attribute, $value) { return substr($value,-4) == '.com'; } /** * Get the validation error message. * * @return string */ public function message() { return 'يجب ان تحتوي نهايه البريد الالكتروني علي .com'; } }
Back to File Manager