php

Gymie maintenance Release v1.0.2 / v1.0.3

In 2018 we opensourced “Gymie“, our small side project which started as small solution to the local gyms. This year we are focusing on our “Laravel” and “Gymie” offering. We have received a positive response from people using the application. All the feedback and suggestions gives us better clarity about the roadmap. Latest maintenance release(s) iron outs bugs and cleanup. Next, work is in progress for v1.1.2 to bring some enhancements, code refactoring & cleanup. Personally, we are not happy with current implementation and we have started working on v2.0 release to make core app stable. Detailed scope and features…

Handy WordPress Plugins

Handy WordPress Plugins For Developers – Part 4

At LUBUS, we have been fortunate enough to work on different kind of projects which has helped us learn & explore WordPress. We try our best to avoid using plugins for every other requirement which can be simply implemented with few lines of code. But there are scenarios when plugins come in handy. For us, these plugins are tools & utilities which help us perform tasks during development. These plugins have been helping us on our various projects. We are sharing them in series of articles covering 5 plugins in each post along with scenarios when we used them. [well] Note: These plugins are…

adding email verification

Adding Email Verification In laravel 5.3 App

Adding email verification process in your laravel 5.3 app step by step. First let’s initiate with an overview so we have an idea what is the actual process we are going to implement followed by the code and the steps. Overview : Create a user with a status of 0 (Zero) i.e. not verified initially Store a random token with the user details on creation Email the token to the user Match the token & user id coming from mail with the database records If matched set the user status to 1 i.e. verified Now, lets start with the code &…

laravel packages

How To Install Laravel On Windows Using WAMP

In this tutorial we will be looking into installing laravel on windows using WAMP. If you are new to laravel, installing laravel on windows might be little over whelming for you at first, I wish to make the installation process for laravel on windows for you as breeze as the framework itself, So let’s dig in Step 1 : Installing WAMP Download it’s dependencies (Visual C++ packages) first, which are as follows. Make sure you are “up to date” in the redistributable packages VC9, VC10, VC11, VC13 and VC14. Visual C++ Packages : The libraries VC9, VC10, VC11 are required…