n Automatic Column Value When Creating Records in Laravel | CodimTh

Please Disable Your Browser Adblock Extension for our site and Refresh This Page!

our ads are user friendly, we do not serve popup ads. We serve responsible ads!

Refresh Page
Skip to main content
On . By CodimTh
Category:

Automatic Column Value When Creating Records in Laravel


If you want to generate some DB column value when creating record, add it to model's boot() method.
For example, if you have a field "position" and want to assign the next available position to the new record (like Country::max('position') + 1), do this.

class Country extends Model {

          protected static function boot()
           {
                       parent::boot();
                      // every new record will get next available position number
                      Country::creating(function($model) {
                           $model->position = Country::max('position') + 1;
                      });
          }
}

Riadh Rahmi

Senior Web Developer PHP/Drupal & Laravel

I am a senior web developer, I have experience in planning and developing large scale dynamic web solutions especially in Drupal & Laravel.

Web Posts

Search

Page Facebook