u
Size: a a a
u
u
AH
php artisan migrate(8-ая лара). Выдает ошибку SQLSTATE[HY000] [2002] Попытка установить соединение была безуспешной[...]. Про изменения .енв и дб.пхп я уже пытался что то да как то сделать, ничего не получилось. Локальная среда на xampp mysql если что. Что могло пойти не так?
AA
AH
$this->dep->someMethod($request->input('param'));
$this->dep->otherMethod($request->input('param'));
$param = $request->input('param');Получение параметра связанной модели:
$this->dep->someMethod($param);
$this->dep->otherMethod($param);
$comment = Comment::with('post')...;
$postId = $comment->post->id;
$comment = Comment::with('post')...;
$postId = $comment->post_id;
DM
Н
AH
4
select * from categories where id in (
select category_id from survey_templates where id in (
select survey_template_id from cycle_iterations where cycle_id = 5
)
)
AP
AH
AH
DM
DM
AH
ЕК
Н
DM