Answers for "laravel find with relation for a given id"

PHP
0

laravel relations find

/**
 * Get the user's most recent order.
 */
public function latestOrder()
{
    return $this->hasOne(Order::class)->latestOfMany();
}
Posted by: Guest on June-10-2021
0

laravel relations find

use AppModelsComment;

$comment = Comment::find(1);

return $comment->post->title;
Posted by: Guest on June-10-2021

Code answers related to "laravel find with relation for a given id"

Browse Popular Code Answers by Language