<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class RelationBuyerArticle extends Model
{
    protected $fillable = ['buyer_id', 'article_id'];

    public function article()
    {
        return $this->belongsTo(Article::class, 'article_id', 'building_id');
    }
}
