Вход Регистрация
Файл: app/Rules/ValidateExtendedLicenseRule.php
Строк: 35
<?php

namespace AppRules;

use 
IlluminateContractsValidationRule;

class 
ValidateExtendedLicenseRule implements Rule
{
    
/**
     * Create a new rule instance.
     *
     * @return void
     */
    
public function __construct()
    {
        
//
    
}

    
/**
     * Determine if the validation rule passes.
     *
     * @param  string  $attribute
     * @param  mixed  $value
     * @return bool
     */
    
public function passes($attribute$value)
    {
        if (!
config('settings.license_type')) {
            return 
false;
        }

        return 
true;
    }

    
/**
     * Get the validation error message.
     *
     * @return string
     */
    
public function message()
    {
        return 
__('An Extended license required to use this feature.');
    }
}
Онлайн: 1
Реклама