File: /var/www/wsklad/app/Ajurendpointcontragent.php
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Ajurendpointcontragent 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_DANNOMER',
];
protected $table = 'ajur_endpoint_contragents';
public $timestamps = false;
public function details()
{
return $this->hasOne('App\Contragentdetail', 'F_KONTRAGENT', 'F_KONTRAGENT');
}
}