Edit File: ArabicNumValid.php
<?php namespace App\Rules; use Illuminate\Contracts\Validation\Rule; use Illuminate\Support\Str; class ArabicNumValid 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) { if(Str::length($value) > 2 && Str::length($value) < 6){ return true; } return false; } /** * Get the validation error message. * * @return string */ public function message() { return trans('auth.car_num_ar_dig'); } }
Back to File Manager