File: /var/www/wsklad/app/Ajurendpointdistributor.php
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Ajurendpointdistributor extends Model
{
protected $fillable = [
'F_KONTRAGENT',
'F_NAIMENOVANIE',
'F_OTHERNAME',
'F_BULSTAT',
'F_DDSID',
'F_ADRES',
'F_BANKPAY',
'F_BANKACODE',
'F_BANKA',
'F_MOL',
'F_LICENSE',
'F_TODISTRIB',
'F_DANNOMER',
];
protected $table = 'ajur_endpoint_distributors';
public function contragent()
{
return $this->hasOne('App\Ajurendpointcontragent', 'F_KONTRAGENT', 'F_KONTRAGENT');
}
public function details()
{
return $this->hasOne('App\Distributordetail', 'F_KONTRAGENT', 'F_KONTRAGENT');
}
}