belongsTo(Produto::class, 'produto_id'); } public function cliente(){ return $this->belongsTo(Cliente::class, 'cliente_id'); } public function itemProducao(){ return $this->belongsTo(ItemProducao::class, 'item_producao_id'); } }