Skip to content

Instantly share code, notes, and snippets.

@laymont
Created November 23, 2022 22:20
Show Gist options
  • Save laymont/bd2dc91b5530c352f172d7f5f3010f30 to your computer and use it in GitHub Desktop.
Save laymont/bd2dc91b5530c352f172d7f5f3010f30 to your computer and use it in GitHub Desktop.
Edit boot model laravel
public static function boot()
{
parent::boot();
static::creating(function ($model) {
$model->nombre = strtoupper($model->nombre);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment