Domain Name Rule
Validate Domain Names
129k Downloads / Month
Open Source MIT License
129k Downloads / Month
Open Source MIT License
Learn how to validate the domain names with the additional validation rules of Intervention Validation for your Laravel application.
public Intervention\Validation\Rules\Domainname::__construct()
The field under validation must be a well formed domainname.
none
use Illuminate\Support\Facades\Validator;
use Intervention\Validation\Rules\Domainname;
$validator = Validator::make($request->all(), [
'attribute-key' => new Domainname(),
]);
Edit