Answers for "laravel add relation to search"

PHP
0

laravel relations find

return $this->belongsToMany(Role::class, 'role_user');
Posted by: Guest on June-10-2021
0

laravel relations find

class Project extends Model
{
    public function deployments()
    {
        return $this->hasManyThrough(
            Deployment::class,
            Environment::class,
            'project_id', // Foreign key on the environments table...
            'environment_id', // Foreign key on the deployments table...
            'id', // Local key on the projects table...
            'id' // Local key on the environments table...
        );
    }
}
Posted by: Guest on June-10-2021

Code answers related to "laravel add relation to search"

Browse Popular Code Answers by Language