Answers for "laravel find on relation"

PHP
0

laravel relations find

$comment = Post::find(1)->comments()
                    ->where('title', 'foo')
                    ->first();
Posted by: Guest on May-26-2021

Code answers related to "laravel find on relation"

Browse Popular Code Answers by Language