Laravel 版本是 7.0:
我已经设置了这样的模型关系。
<?php
namespace App;
class Template extends Model
{
protected $fillable = ['header_id', 'content', 'name'];
public function header()
{
return $this->belongsTo('App\Header', 'header_id');
}
}
在控制器中,我可以获取带有标题的模板对象。
<?php
namespace App\Http\Controllers;
use App\Template;
class TemplateController extends Controller
{
public function show($id)
{
$template = Template::find($id);
}
}
现在我可以$template->header在视图中使用了。
如何传递不同的 header_id 并获取标头关系对象?我想这样做:
<?php
namespace App\Http\Controllers;
use App\Template;
class TemplateController extends Controller
{
public function show($id, $temp_header_id)
{
$template = Template::find($id);
$template->header_id = $temp_header_id;
}
}
我想在视图中获得新的标题关系:
当我在视图中执行操作时,有什么方法可以返回新的标头关系$template->header。
谢谢
湖上湖