Versioning-software-applications

Versioning Web Applications Products.

Versioning is the process of assigning either unique version names or unique version numbers to unique states of computer software.

Within a given version number category (major, minor), these numbers are generally assigned in increasing order and correspond to new developments in the software.

Read more…

Modular approach in Laravel application (1)

Modular approach in Laravel Application

Laravel is a great framework, not only because of the elegant syntax, rapid development tool but also because of the ecosystem & open source packages available for it. These packages help a lot to reduce the development time.

Modules

Modules are similar to packages with there own Models, View, Controller, Migrations and other classes.

By default in a Laravel application all Controllers, Models goes inside app/ folder, Migrations, Seeder, Providers etc have there own folder.
As the application grows, these directories become cumbersome. Searching logics for a particular section of the application become difficult.

Read more…

Adding custom attributes to Select field in laravelcollective HTML

Most of the time we use HTML select without any custom attributes. But in some cases adding custom attributes like data-* helps to easily access extra data related to the Option selected without making additional ajax call.

LaravelCollective HTML is an awesome package to created HTML forms in Laravel. It provides a lot of features to help to build simple and complex forms.

If you wanted to add some custom attributes in Select-Option tag, that is something like this:

Read more…

cost-of-web-application-website-development

What is the cost of Website or Web Application Development?

“What is the cost of this website/web application Development” is the first question we hear from prospective clients.

And our answer goes with many other questions.

  • Can you share the complete requirements?
  • Is the requirement in above question 100%?
  • Do we expect some changes in requirements as the application development progresses to reflect market/users need?
  • Do you want us to use a particular technology stack or you’re open to our suggestions?

Every unique detail, be it design or a feature, means a certain amount of time and talent of a specialist. That means that before telling you even an approximate price we need to evaluate your project and calculate main stages of its development. So, Getting down to the cost is perhaps the last thing we do after completely understanding the requirement.

Read more…

WordPress Multisite: A brief analysis

What is WordPress Multisite?

“WordPress Multisite Network” is one of the great features currently WordPress is bundled with which not only saves time for developing the complex coding for a multisite network from scratch but also a great option for economical point of view.

A WordPress multisite network is a collection of sites which share same WordPress installation as well as the same database with different tables.
Read more…

Laravel: Ajax CRUD operation in Resource Controller

Laravel: Demo Ajax CRUD operation in Resource Controller

Laravel provides Resource Controller which is very helpful for performing CRUD (Create, Read, Update, Delete) operation for resources (like Photos, Brands, Categories etc).

CRUD Routes for resource controller can be added with just a single line of code. Also, if you want to have partial resource routes it can be easily done with only or except attributes.
Read more…

Adding Custom Data for Products During Add To Cart

Adding Custom data to WooCommerce Order during ‘Add to cart’

I was working on an E-Commerce application using WooCommerce WordPress plugin. Here the requirement was users can add custom information for each product they ‘add to cart’. The task seemed difficult at the beginning but after understanding the various hooks it was just a series of steps that needed to be followed and it worked like a charm.

In this post, you will find a step-by-step detailed explanation which will definitely help you to achieve the objective of adding custom information for products during ordering.

Read more…