DM
Size: a a a
DM
D
DM
ЕК
DM
АЗ
$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;
u
DM
D
DM
D
D
DM
DM
D
D
AH