<?php
namespace app\components\filtering;
class FirstLetterCondition extends BaseCondition
{
public static function get($attribute, $value, $modelClass)
{
return ['IN', 'LEFT(name, 1)', $value];
}
public static function is($attribute, $value)
{
return 'first-letter' === $attribute;
}
}