| Current Path : /home/webg5288/laravel/compro/app/ |
| Current File : //home/webg5288/laravel/compro/app/Article.php |
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Article extends Model
{
public function categories(){
// return $this->belongsToMany(Category::class)->withPivot('category_id');
return $this->belongsToMany('App\Category')->withPivot('category_id');
}
}