laravel eloquent create vs insert
Updated: 17th July 2024
Tags: laravel
There are few important differences:
# | Insert | Create |
---|---|---|
Respect fillable / guarded | No | Yes |
Creates timestamps | No | Yes |
Returns created object | No | Yes |
Allow multi insert | Yes | No |
Updated: 17th July 2024
Tags: laravel
There are few important differences:
# | Insert | Create |
---|---|---|
Respect fillable / guarded | No | Yes |
Creates timestamps | No | Yes |
Returns created object | No | Yes |
Allow multi insert | Yes | No |