у меня есть include (C: \ xampp \ htdocs \ PHP \ test \ bezel): не удалось открыть поток: ошибка доступа запрещена, в чем проблема?
модель статьи:
class Article extends Model
{
protected $fillable = [
'title' , 'header_image', 'article_body' , 'important_body','quote' , 'author_quote','text_image'
];
public function article(){
return $this->belongsToMany(ArticleCat::class);
}
}
статьяКатегория модели:
class ArticleCat extends Model
{
protected $fillable = [
'index_image' ,'short_explain', 'title' , 'parent_id'
];
protected $table = 'index_article';
public function article(){
return $this->hasMany(Article::class);
}
}