File: /var/www/wsklad/app/Ajurendpointreceiver.php
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Ajurendpointreceiver extends Model
{
protected $fillable = [
'F_KONTRAGENT',
'F_NAIMENOVANIE',
'F_OTHERNAME',
'F_COUNTRY',
'F_REGION',
'F_POSTCODE',
'F_ADRESS',
'F_CITY',
'F_CLIENT',
'F_MENAGER',
'F_RAJON',
'F_CATEGORY',
'F_SUBCATEGORY',
'F_CODE',
];
protected $table = 'ajur_endpoint_receivers';
public $timestamps = false;
public function contragent()
{
return $this->hasOne('App\Ajurendpointcontragent', 'F_KONTRAGENT', 'F_CLIENT');
}
}