Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

join in eloquent model

/**
 * Get the user's oldest image.
 */
public function oldestImage()
{
    return $this->morphOne(Image::class, 'imageable')->oldestOfMany();
}
Source by laravel.com #
 
PREVIOUS NEXT
Tagged: #join #eloquent #model
ADD COMMENT
Topic
Name
5+1 =