'int', 'category_id' => 'int' ]; protected $fillable = [ 'footer_code_id', 'category_id' ]; public function category() { return $this->belongsTo(Category::class); } public function footer_code() { return $this->belongsTo(FooterCode::class); } }