echo Form::model($ItemA); // прибиндили модель
echo Form::select('GetB', C:All()); // для списка используется результат C::all(), а чекнутые возьмутся из поля GetB модели $ItemA
// инъекция в конструктор
public function __construct(User $users) {
$this->users = $users;
}
public function index() {
return $this->user->all();
}
// инъекция прямо в метод
public function index(User $users) {
return $users->all();
}
Post::find($postId)->author->name;
Post::with('author')->find($postId)->author->name;
posts (ваши ruwords)
id - integer
name - string
videos (ваши enwords)
id - integer
name - string
tags (ваши catogories)
id - integer
name - string
taggables (связь слов с категориями)
tag_id - integer
taggable_id - integer
taggable_type - string