我想在Laravel 5.3上建立一個應用程序,其中我的模型,數據庫和控制器位於單獨的文件夾中。我有以下文件夾結構:Laravel中的多對多關係
Nitseditor
System
Controllers
Database
2016_12_28_130149_create_domains_table.php
2017_01_06_193355_create_themes_table.php
2017_01_07_140804_create_themes_domains_table.php
Models
Domain.php
Theme.php
我正在域的關係與多對多的關係,即
public function themes()
{
return $this->belongsToMany('Nitseditor\System\Models\Domain');
}
我命名錶domain_theme
的2017_01_07_140804_create_themes_domains_table.php
現在裏面我試圖獲取屬於控制器域中的主題名稱,如下所示:
$flashmesage = new Domain;
foreach ($flashmesage->themes as $theme)
{
return $theme->theme_name;
}
我得到一個錯誤:
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'nitswebbuilder.domain_domain' doesn't exist (SQL: select
domains
.*,domain_domain
.domain_id
aspivot_domain_id
fromdomains
inner joindomain_domain
ondomains
.id
=domain_domain
.domain_id
wheredomain_domain
.domain_id
is null anddomains
.deleted_at
is null)
愚蠢的錯誤。謝謝你的方式! –