<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Locations extends Model
{
public $table = "locations";
public function unitLocation()
{
return $this->belongsToMany(\App\Units::class,'unit_locations','unitId','locationId');
}
}