Skip to content

Why is broadcasting/auth not found?

Already uncommented at config/app.php: and Error: I am using Mamp 4 and Laravel 5.5. Answer Try this commands php artisan config:cache composer require pusher/pusher-php-server “~2.6” (user 2.6 because 3.0 has class Pusher not found issue) composer update (just to make sure everything is up to dat…

How to do filter for products (laravel)

I do the online shop. I have 3 pages where filters for products are similar – Catalog page, parent category page and children category page The filter is made via get requests, like that: site/catalog?price_from=1&price_to=9999&color=red. How to make this filter into a separate function? Will it…

WordPress redirect based on the presence of a cookie

First off, I am a complete amateur when it comes to coding, but I’ve been reading hundreds of posts on Stack Overflow and other websites in an attempt to string together the right PHP code to make my …