以模式将数据从控制器传递到 header
Passing data from controller to header in modal
请帮帮我..
我想在 header 标签中将一些文本从控制器传递到模式..
这是我想通过控制器方法发送到 header 的模态:
$this->labelFormTambah = "Edit Data Donatur";
这是我要发送上面数据的header的属性:
<h3 class="modal-title" id="labelFormTambah" wire:model="labelFormTambah">
遗憾的是,这不起作用。
从相同方法发送到输入标签中相同模态的任何数据都可以正常工作。
我的错误在哪里?
我有一个建议。
您的控制器应如下所示:
public function edit(){
//since you know the value of $this->labelFormTambah you can just pass it as an argument instead of creating a variable name first
return view("edit.page",["lableForm" => "Edit Data Donatur"])
}
然后在你的 edit page
中你的模态 header 应该是这样的:
<h3 class="modal-title" id="labelFormTambah" wire:model="labelFormTambah">{{$labelForm}}</h3> //the value in the double curly braces comes from the argument you've passed in your controller
这将显示您返回的 $this->lableFormTambah
值以及 view
作为模态 header 标签
中的值
请帮帮我..
我想在 header 标签中将一些文本从控制器传递到模式..
这是我想通过控制器方法发送到 header 的模态:
$this->labelFormTambah = "Edit Data Donatur";
这是我要发送上面数据的header的属性:
<h3 class="modal-title" id="labelFormTambah" wire:model="labelFormTambah">
遗憾的是,这不起作用。
从相同方法发送到输入标签中相同模态的任何数据都可以正常工作。
我的错误在哪里?
我有一个建议。
您的控制器应如下所示:
public function edit(){
//since you know the value of $this->labelFormTambah you can just pass it as an argument instead of creating a variable name first
return view("edit.page",["lableForm" => "Edit Data Donatur"])
}
然后在你的 edit page
中你的模态 header 应该是这样的:
<h3 class="modal-title" id="labelFormTambah" wire:model="labelFormTambah">{{$labelForm}}</h3> //the value in the double curly braces comes from the argument you've passed in your controller
这将显示您返回的 $this->lableFormTambah
值以及 view
作为模态 header 标签