<?php namespace App; use Illuminate\Foundation\Auth\User as Authenticatable; class Ajurconnection extends Authenticatable { /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'url', 'port', 'suffix', 'url2', 'port2', 'suffix2', 'sklad_mat', 'sklad_gp', 'zveno_gp', ]; protected $table = 'ajur_connections'; }