rackbeat/laravel-validate-https
Validation Rule to ensure a url is secured (https)
Should be combined with url rule. Alternatively just run starts_with('https://')
Installation
You just require using composer and you're good to go!
composer require rackbeat/laravel-validate-https
The Service Provider is automatically registered.
Usage
Class
Rackbeat\Rules\HttpsRule
'url' => [
'url',
new Rackbeat\Rules\HttpsRule,
],
Helper
https
'url' => [ 'url', 'https' ],
Requirements
- PHP >= 7.1
Related Packages
codezero/laravel-unique-translation
Check if a translated value in a JSON column is unique in the database.
1,101,358
188