whereYear('created_at', '=', now()->year) ->whereMonth('created_at', '=', now()->month); } protected static function boot() { parent::boot(); static::creating(function ($model) { $model->id = (string) Str::uuid(); }); } }