Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Simple Developer
Simple Developer
When insert a new row to pivot table, we can use attach()
method like this:
$company = Company::find(1);
$company->users()->attach(1);
But this will not update created_at and updated_at timestamps column in pivot table.
To update timestamps, use withTimestamps()
method on the relationship method.
class Company extends Model
{
public function users()
{
return $this->belongsToMany(User::class)->withTimestamps();
}
}