Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/laravel-validation-rules/subdomain

Validate a subdomain for your saas application
https://github.com/laravel-validation-rules/subdomain

laravel php subdomain validation

Last synced: 4 months ago
JSON representation

Validate a subdomain for your saas application

Lists

README

        

# Subdomain

Validates a user submitted subdomain in your application.














Supports Laravel: 5.5, 5.6, 5.7 & 5.8

## Installation

```bash
composer require laravel-validation-rules/subdomain
```

## Usage

```php
use LVR\Subdomain\Subdomain;

$request->validate([
'domain' => ['required', new Subdomain],
]);
```