Domain Name Rule
Validate Domain Names
114k Downloads / Month
Open Source MIT License
114k Downloads / Month
Open Source MIT License
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