September 2017

Posted by | September 20, 2017
Laravel 5.5 – Collection Dumping.

Laravel 5.5 has introduced 2 new methods on collections class which makes debugging easier than before. Lets take example of simple collection setup and pipe through some filters. collect([1,2,3])->map(function($i){ return...

Continue Reading
Posted by | September 18, 2017
Laravel: Eager loading

First, Lets understand why eager loading come in to existence! To understand nature of this problem, I am taking an example of below Laravel code. $users = User::take(5)->get(); it will...

Continue Reading
Posted by | September 14, 2017
What can you do with WooCommerce

The main purpose of WooCommerce is to sell products with or without shop or brand. The product management is a first and main section. In WooCommerce you can manage a...

Continue Reading
Posted by | September 13, 2017
Why WooCommerce is the best for eCommerce

Global market stability 30%+ WooCommerce now used for eCommerce websites Reporting Easy to use reporting dashboard makes it easy to track and analyze your sales Integrations Its easy to integrate...

Continue Reading
Posted by | September 12, 2017
Laravel – Seeders

Why Seeders are important While a project is in development phase, developers have to drop and re-create all database tables in development life-cycle. php artisan migrate:refresh Laravel provides command line...

Continue Reading
Posted by | September 11, 2017
Laravel – View Presenters

Developers often come across such problems while developing min-to-large scale applications, that they have to put "view concerned logic" into model files and that makes model lengthy and mix-up entity...

Continue Reading
Posted by | September 8, 2017
Drupal – Install module using drush

In Drupal You can Installing module using command line with Composer, Drush, and Drupal cosnsole In this blog We can see how to install module from the command line using...

Continue Reading
Posted by | September 7, 2017
Why WordPress should use for your business? Top 9 Reasons.

It is Free and Open Source It Is Easy to Use Gorgeous Admin panel for non technical clients It Is Easy To Customize Customizing through Admin panel Customizing through codes...

Continue Reading
Posted by | September 6, 2017
WordPress Blog Website v/s Blogger Blog

Blogger is the blogging platform provided by Google. There are lots of ongoing arguments about which is better. Our view is that they simply suite different needs. Blogger is free,...

Continue Reading
Posted by | September 5, 2017
Laravel: Database Query Optimization.

Laravel comes up with Eloquent and enables developer to make complex queries with ease. This refrains developers from checking what actually happens behind the scene. But if we don't take...

Continue Reading