Media (MIME) Type Rule
Validate MIME Type Strings
114k Downloads / Month
Open Source MIT License
114k Downloads / Month
Open Source MIT License
public Intervention\Validation\Rules\MimeType::__construct()
Checks for a valid Mime Type (Media type).
none
use Intervention\Validation\Rules\MimeType;
$validator = Validator::make($request->all(), [
'attribute-key' => new MimeType(),
]);
Edit