<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class TroubleOld extends Model
{
    protected $connection = 'mysql2';
    protected $table = 'troubles';

    public function detail() {
        return $this->hasMany(TroublePriceOld::class, 'trouble_id', 'id')->with('model_detail');
    }
}
