Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 

Search In

How to create multilingual translated routes in Laravel 4.x

Now there are n number of site which we have to make multilingual. In Laravel we have the facility to make our site multilingual. In Laravel 4.x we will also make multilingual routes.There are few steps we have to follow to create multilingual transl

Differences between “php artisan dump-autoload” and “composer dump-autoload”

When we are working on Laravel then we should know the php artisan and composer and the differences between “php artisan dump-autoload” and “composer dump-autoload” are: Laravel's Autoload is a bit different: 1) It will in fact use Composer for

Storing objects in local storage.

If you want to store Javascript objects in local storage, you can use HTML5 local storage. Here is the code :- var dashboard-data = { 'one': 1, 'two': 2, 'three': 3 }; // Put the object into storage localStorage.setItem('dashboard-data', JSON.stri

Adding Blur effect in swift

Hello friends, To add blur effect in swift you may use the following code: IBAction func blurImage(sender: AnyObject) { // 1 Create an object of UIBlurEffect,you may change the value of style as per your requirement var darkBlur = UIBlurEffect(

Update without touching timestamps (Laravel)

I want to update my data but I dont want to update my timestamps. Laravel 4.x provide us the facility to update our data without updating our timestamps. The example to Update without touching timestamps using Laravel 4.x is: $user = User::find(1);

Order confirmation mail not sending in magento 1.9+ versions

From magento 1.9+ versions , emails are not being sent directly , they were queued and queued mails were being processed by magento cronjob. You need to set the cron job correctly to send the mail. If you want to send mail forcefully after placing a

How to check if cookie is enable or not

Hi. If you are looking for code to alert user if his cookies are enable or not, Then look the code as below:- paste the code in you file <?php if (isset($_COOKIE['cookieCheck'])) { echo 'Your cookie is Enable'; } else { if (isset($_GET[

Static method in PHP

When we declare a function as static then we generally get confused about what to use like '->', '::', 'this' or 'self'. There are something we need to take care of when declaring a function as static: 1: If the variable or method being refere

How to use extension method in openERP/Odoo ?

When using _inherit but leaving out _name, the new model replaces the existing one, essentially extending it in-place. This is useful to add new fields or methods to existing models (created in other modules), or to customize or reconf

What are the different array functions in sorting an array?

Hello Readers Below is the Sorting functions in PHP: sort(): It is an array function which is used to sorts the array and it will be arranged the elements in ascending order (lowest to highest). Example of sort(): <?php $subject = array("

1 352 949
Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: