Fresh code drop

Use model events for defaults

PHP

Original CodeSnap example inspired by Laravel News. Source: https://laravel-news.com/eloquent-tips-tricks

PHP
CodeSnap // free canvas

Use model events for defaults

<?php

protected static function booted(): void
{
    static::creating(function (Post $post): void {
        $post->uuid ??= (string) Str::uuid();
    });
}

// Further reading: https://laravel-news.com/eloquent-tips-tricks

Turn your code into a post.Five templates are free—no account needed.

Remix this snap