getSize() > 5000000) { return false; } } } return true; }); //Add tags for notes Note::created(function ($note) { $tagsToAdd = []; preg_match_all('/#([^\s<>]+)\b/', $note, $tags); foreach ($tags[1] as $tag) { $tag = Tag::normalizeTag($tag); } $tags = array_unique($tags[1]); foreach ($tags as $tag) { $tag = Tag::firstOrCreate(['tag' => $tag]); $tagsToAdd[] = $tag->id; } if (count($tagsToAdd > 0)) { $note->tags()->attach($tagsToAdd); } }); //observer the webmention model WebMention::observe(WebMentionObserver::class); } /** * Register any application services. * * @return void */ public function register() { // } }