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

6d ago

Implement ticket watch feature like jira,clickup using laravel

I’d add a watchers table with user_id and ticket_id, then a simple toggle method. On ticket updates, fire a notification to all watchers using Laravel’s notifications or queued mails.

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?