Select Page
How to clear cloudflare cache in a deployment script

How to clear cloudflare cache in a deployment script

I had a site where I needed to clear the cloudflare cache on each deployment. I went to the docs and found a simple request to make this happen. Thankfully, I was also using Laravel Envoyer, so all I needed to do was to add the script to my deployment hook. curl -X...
How to stop Spam Submissions in Laravel

How to stop Spam Submissions in Laravel

I use a contact form on my website to automatically add the contact to my CRM, in addition to sending me an email on all contact form submissions on the site. I had Recaptcha set, but I found that bots have gotten much better at busting the captcha, and I had started...

How to setup Freshdesk JWT SSO with Laravel

I struggled for many hours getting this setup and figured I would share what I found work setting up Freshdesk SSO setup in a Larvavel environment took. composer require firebase/php-jwt //I also am using just a single name attribute, so I will use a name parser to...