Laravel

Simplifying Database Seeding in Laravel with iSeed

If you’re a Laravel developer, you know how important database seeding is for quick setup of initial data during testing and development. But, managing seed data can be tricky, especially when updating individual tables without affecting the entire database. That’s where the iSeed package comes in – it simplifies the process by automating the generation of seeder files for individual tables. Recently, we worked on a client project that involved developing a system to store crucial data about users, including user profiles, authentication credentials, and permissions. However, during development, we faced a challenge of modifying the structure of the user…

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…

Gymie - Laravel Based Application

Gymie, A Laravel Based Gym Management System Is Now Open Source

Today we are happy to open source Gymie, a Laravel based gym and club management system we built some time back. It has an interesting backstory to share how it came to life. We had never planned to actually build it, rather it started as a side project. We had an intern we had been mentoring and to help him understand and learn Laravel better we picked it as a real-life case study to work on. It was based on our experience with local gym management how they have been handling things. With regular brainstorming session and development, it started taking shape…

Why Laravel

We often get queries from clients or fellow devs like why Laravel? What can you build with Laravel? Oh, but why don’t we use “CodeIgniter or CakePHP” for that or Why not .NET ? The above could be because of 2 main reasons: 1. Half or no research about Laravel 2. A rigid thought process that is stuck with using same tried and tested technologies/frameworks & isn’t ready to adapt to the fast-paced growth of web technologies. No worries if that’s the case with your IT advisor. We have got your back, read along & at the end, you will…

Laravel package to get list of installed packages and dependencies

Laravel Package To Get List Of Installed Packages And Dependencies

Laravel Decomposer, a laravel package to get list of installed packages and dependencies in your Laravel app along with their version numbers in a neat simple way just by the hit of a single route. You might be thinking the same can be achieved by typing a composer command, right? But here’s what you actually need to do to type that composer command: Open terminal Log into the server Oops! forgot the server credentials? Go back to Evernote & copy the credentials Back to the terminal & complete logging in Browse to the project directory Type the long composer command…

Why Attend Laracon Online

Yesterday on 6th February  2017, Laracon Online was announced. Now since you must have already read what it is, I will focus on why one should attend it. Is it worth to attend 9 hours long virtual conference? Yes, it is definitely. The 9 hours long conference gives you hours of mingling with the dudes like Mr. Otwell himself. Now you would question he is virtually available on twitter & slack anyways why pay $10 for it? Fair enough! Here’s how I see the same thing: I can have a word with Mr. Taylor on how to be a better developer managing…

laravel package for instamojo

Laravel Package For Instamojo – Laravel Mojo

Laravel package for Instamojo Laravel Mojo, it provides an expressive, fluent interface to Instamojo’s online payments and refund services. Github : Laravel Mojo Why Instamojo? Instamojo is the India’s emerging C2C payments & e-commerce platform that makes the whole process of online transactions a breeze both for the users and the developers. Other than all their mojo, the support & response from the people, there are enough to make you take a ride! Why Laravel Mojo? Since we use Laravel so extensively and our love for Instamojo is well-known on our Twitter specially, we cannot afford not having the mojo in the…

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

Laravel Packages To Use In Your App

composer require ‘awesome laravel packages’ Starting off with a new app and stuck on which laravel packages to select for basic boilerplate stuff? We have made a list of some of the best laravel packages available to solve the same dilemma. The laravel packages listed below are used by our team on various client projects as well as our in-house products , so they are tried, tested and also trusted 🙂 We select a package against its competitors mainly due to the same reasons that every other developer has, but still for more clarity they are as follows : Developers & contributors being active…

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…