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