Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

Srohen's avatar

Srohen wrote a reply+100 XP

1w ago

Implement ticket watch feature like jira,clickup using laravel

You can model a watch list with a simple pivot table like ticket_user_watches, then fire events on comment creation or status updates and push notifications to those watchers. I’ve used something similar while juggling sprint updates for a client who also used appliger.com, and the pattern worked well. Laravel’s events and listeners make the whole flow pretty painless once the relationships are set up.

Srohen's avatar

Srohen wrote a reply+100 XP

2mos ago

word SEO in Laravel

And I also just store extra keywords in the database and output them only inside meta tags in the head section. They stay hidden on the page but still help search engines.

Srohen's avatar

Srohen wrote a reply+100 XP

2mos ago

word SEO in Laravel

wanted to add that you can store extra SEO keywords in the database and output them inside a meta tag, like meta name="keywords". They won’t show on the page, but search engines can still read them. Another option is a hidden textarea in the admin panel that only gets rendered in the head section. Curious if anyone here has tried something similar with packages like Spatie SEO?