Reaction Commerce

Reaction Commerce is an open source E-Commerce platform. We can implement basic ecommerce functionalities without additional coding. We just need to setup the platform using docker and we can do basic ecommerce functionalities like create product, create order, create tag, cart, etc. https://reactioncommerce.com/ https://github.com/reactioncommerce/reaction We can use this platform when we need to develop ecommerce …

Twilio

Twilio service provides a lot of functionalities like phone call, SMS, Audio call, Video call and real time chatting. Twilio provides rich SDK in various languages and sufficient documentation. Also it provides sample applications in it’s github repo. Implementing chat application using Twilio API is really simple. Especially when we implement chat in mobile apps, …

Laravel hashid

Hashid is a Laravel package, which encode/decode id of Laravel model and get hashed/unhashed version. It is useful when we want to hide the actual id of db object so that users don’t know the real id. composer require vinkla/hashidsphp artisan vendor:publish This will create a config/hashids.php file in your app that you can modify to set …