Run Following commands:
$ sudo add-apt-repository ppa:ondrej/php
$ sudo apt-get update
$ sudo apt-get install -y php7.0
After that run following command:
sudo apt install php libapache2-mod-php
Now restart Apache server :
sudo service apache2 stop
sudo service apache2 start
Repository...
Friday, December 2, 2016
Thursday, November 3, 2016
Laravel 5.3 default authentication

In this tutorial i'll give basic idea of authentication system provided by laravel 5.3. You can find more details about authentication system in this video tutorial.
Authentication system is...
Sunday, October 23, 2016
Api authorization with Passport in Laravel 5.3

This tutorial is basically an environment set up to understand how Passport works in Laravel 5.3.
Passport is a way to manage authentication for accessing API in Laravel. It is very easy to implement...
Thursday, September 29, 2016
Python Connect Database Using peewee

First install peewee using pip
pip3 install peewee
Now we have to install MySQLdb or PyMySQL
To install PyMySQL run following command:
sudo pip3 install PyMySQL
Now our basic Configuration done.
Lets...
Thursday, September 1, 2016
Up & Running With Gulp
Check Older version if installed
$ npm rm --global gulp
Install Gulp Globally
$ npm install --global gulp-cli
Initializing Project directory
npm init
Installing Dependencies
npm install --save-dev gulp
Creatng gulpfile.js in root directory
var gulp = require('gulp');
gulp.task('default',...
Tuesday, August 23, 2016
Install laravel 5.3 in Ubuntu 14.04

Once again Laravel comes with many amazing features and i can't wait more to try this all out.
In this post i am going to write how to setup laravel 5.3 in Ubuntu 14.04.
I am planning on making...
Laravel Elixir Setup and Uses

Laravel Elixir provides a clean, fluent API for defining basic Gulp
tasks for your Laravel application. Elixir supports several common CSS
and JavaScript pre-processors, and even testing tools....
Sunday, August 14, 2016
Integrate Redis on Laravel 5.2

In this tutorial i am going to write basic steps to integrate Redis with laravel 5.2
Steps
First
Install Redis server on your system.
I am using Ubuntu 14.04. Following commands will...
Saturday, August 13, 2016
Opencart 2.3 landing page Bisection
I am new to opencart 2.3 and i am learning through debugging how this e-commerce platform working.
In this post , i am writing about changing landing page which is changing route common/home to something new. i.e uncommon/home
I have been trying to find the root from where opencart 2.3 is routing...
Setting up header to collect data from API
Get data from api
Set header :
header('Access-Control-Allow-Origin: *');
header('Access-Control-Allow-Methods: GET, POST, OPTIONS');
header('Access-Control-Allow-Headers: Origin, Content-Type, Accept, Authorization, X-Request-With');
header('Access-Control-Allow-Credentials: true');
now get Get...
Basic Git command and remotely update to Github
In this tutorial i’ll write basic git command to create local git repository , staging changes, committing and push changes to remote git repository.
First, We have to know what is git?
Git is a open...
Laravel Project Setup Using Composer
In this tutorial i’ll write the key points that are necessary to create a laravel project/setting a laravel project with the help of composer.
Composer Setup
First We have to understand what is composer?
Well, Composer is a tool used in PHP for dependency management. It allows us to declare the dependent...
Install LAMP and PHPmyAdmin && PHPpgAdmin on Ubuntu 14.04
Install LAMP
Steps are:
sudo apt-get update
sudo apt-get install apache2
sudo apt-get install mysql-server php5-mysql
sudo apt-get install php5 libapache2-mod-php5 php5-mcrypt
sudo gedit /etc/apache2/conf-available/serve-cgi-bin.conf Add this line at the end of the file:
ServerName localhost
...
Laravel 5.2 Implicit model binding
In Laravel 5.2 new feature called implicit model binding added. Which can be implement efficiently and in a very easy manner. Here how its done :
In your routes.php file create a new route
Route::get('user',function(){});
Now if you want to retrieve information of a particular user, modify your...
Laravel 5.2 using queue to send email
To sent email after desired number of second, first change the .env file as follow.
First provide database credential
set
QUEUE_DRIVER=sync to
QUEUE_DRIVER=database
Normally ,
QUEUE_DRIVER=sync tries to sent email immediately and if we set it
as database, we can sent email after desired number...
Laravel 5.2 queuing Event listeners
First , we need to create Event and to listen event, we also have to create listener.
To do this , laravel provides us several ways. The easiest way to create event and corresponding listener we can use this command
php artisan event:generate
To make it work, we have to define our event and corresponding...
Create Your own command on Laravel 5.2

In Laravel application , when you try this command
php artisan
you would see lots of command for laravel application. So if you want to create your own command, laravel provide you very easy way...