在不使用belongsToMany关系的字段中触发事件

时间:2017-06-07 05:07:08

标签: php laravel octobercms octobercms-plugins octobercms-widgets

我有以下字段

<div *ngIf="flag">
   Main Template
</div>

<div *ngIf="!flag">
   Successfull registration template
</div>

相应的计划关系是

plan:
        label: Plan
        tab: account
        type: relation
        required: true
        placeholder: Select Plan
        emptyOption: No Plan Selected

    business:
        label: Select Business
        tab: account
        type: dropdown
        required: true
        placeholder: Select Business
        options: getBusinessOptions
        trigger:
            action: show
            field: plan
            condition: value[1]

我只需要在计划为1时显示业务领域,但它与belongsTo计划关系工作正常,我的需要是使其与belongsToMany关系一起工作。

提前致谢。

0 个答案:

没有答案