/**
* The database table used by the model.
*
* var string
*/
protected $table = 'org';
/**
* The attributes that are mass assignable.
*
* var array
*/
protected $fillable = ['name_org', 'type', 'rod_deyat','rod_deyat2', 'tel', 'logo' , 'e-mail','site','kolvo_akcii','kolvo_product','description','addres_office','addres_org','author_id','pn_pt','pn_pt_per','sub','sub_per','vos','vos_per','active','logo','oplata'];
/**
* The attributes excluded from the model's JSON form.
*
* var array
*/
protected $hidden = ['id', 'remember_token','_token',];
public function user()
{
return $this->hasOne('App\User', 'name','author_id');
}
А как мне потом выводить полученные данные из двух моделей ?
в моделе для отношений написано
public function user()
{
return $this->hasOne('App\User', 'name','author_id');
}
элементы первого массива (Город/Власть и Авто и последующие ) имеют в БД поле с именем numer и номера по порядку от 1 до n .
Т.е.:
Город/Власть: (numer=1)
-Школы(numer=1)
-Администрация(numer=1)
-...(numer=1)
-....(numer=1)