Jrean\UserVerification\UserVerification::hasColumn PHP Метод

hasColumn() защищенный Метод

Check if the given model talbe has the given column.
protected hasColumn ( Illuminate\Contracts\Auth\Authenticatable $user, string $column ) : boolean
$user Illuminate\Contracts\Auth\Authenticatable
$column string
Результат boolean
    protected function hasColumn(AuthenticatableContract $user, $column)
    {
        return $this->schema->hasColumn($user->getTable(), $column);
    }