Insert Data in Pivot Table

I have 2 tables companies and users with many to many relationship, now I want to add data in pivot table when I'm creating new user how can I do that?Please help
Solution
protected function afterCreate(): void
{
    //companies that you want to attach
    $companies = [1,2,3..];
    
    //use sync or attach to attach the companies
    $this->record->companies()->sync($companies);
}
Was this page helpful?