Create custom helper in laravel 5

Laravel support inbuilt helper functionality that we can use in our web application. Please follow the following easy steps to create your own custom helper. First create a folder Helpers in your app directory Now create a file CustomHelper.php in this helpers folder Open newly created file and write the following code Open config/app.php and […]

Read More
 
 
 
 
 
 

Single Page Application vs Multi Page Application (SPA vs MPA)

In the era of cloud , every application has been / being migrated from desktop to web server. And companies  earlier having their older softwares on systems are creating the same  as web app for easy and global approach of clients. Now the webapp could be categorized into two types – One is traditional Multi Page […]

Read More
 

What is composer

Composer is a dependency manager tool for PHP.It will manage all kind of dependencies that you require for a project. It will get all the required libraries and manage them all in one place. Composer is not package manage but it’s manage libraries and manage(install/update) for us

Read More