<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class BrandDetailOld extends Model
{
    protected $connection = 'mysql2';
    protected $table = 'store_brands';

    public function brand() {
        return $this->belongsTo(BrandOld::class, 'brand_id', 'id');
    }
}
