File: /var/www/wsklad/app/Distributorroute.php
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Distributorroute extends Model
{
protected $fillable = [
'DISTRIBUTOR_F_KONTRAGENT',
'F_KONTRAGENT',
'WEEKDAY',
'SEQUENCE'
];
protected $table = 'distributor_routes';
public function distributor()
{
return $this->hasOne('App\Ajurendpointdistributor', 'F_KONTRAGENT', 'DISTRIBUTOR_F_KONTRAGENT');
}
public function contragent()
{
return $this->hasOne('App\Ajurendpointcontragent', 'F_KONTRAGENT', 'F_KONTRAGENT');
}
public function weekday()
{
return $this->hasOne('App\Weekday', 'id', 'WEEKDAY');
}
}