Laravel 5.4 - Image upload with validation

Today we are share with you one of the simple solution which very helpfull for laravel begginers how to image upload in laravel with validation. laravel provide a very simple functionality for image upload and make easy validation on it. We are show you how to image upload in laravel with validation step by step Laravel provide folowing validation for image upload // check type 'image' => 'mimes:jpeg,bmp,png', // check size 'image' => 'max:2048&#.....

Continue reading By : Laravelcode July 2, 2017 Category 96377 views

How to install elastic search in local system and live server

Laravelcode write one of the very helpfull article related how to install or configure elastic search in your local system as well as in live server. Elastic search is a search engine based on Lucene. it main use in any web application for a full text search in appllication with HTTP web interface and schema-free JSON documents. elastic search is develop in java. so, if you are use elastic search then you must be install java. So, how to install elastic search in local system? please follo.....

Continue reading By : Laravelcode July 2, 2017 Category 5048 views

Laravel V5.4.28 is now released

The laravel team released laravel version 5.4.28 yesterday and add some new funtion like array_random() and some bugs fixed and remove role attribute from forms in stubs The first of these is a new array_random helper that allows you do something like this array_random(['one', 'two', 'three']); // "two" Or you can specify the number of random items you’d like returned: array_random(['one', 'two', 'three'], 2.....

Continue reading By : Laravelcode July 1, 2017 Category 1781 views

Laravel 5.4 - Get comma separated values in sql

Some time you get recird from comma separated values in sql. for example you craete one users module and this user know multiple language like english, france, hindi, italian etc..., so, some time to get only that type records whcih user know english. So we have hew one language table like that language table +----+---------+ | id | name | +----+---------+ | 1 | english | +----+---------+ | 2 | hindi | +----+---------+ And we have one another table in th.....

Continue reading By : Laravelcode June 26, 2017 Category 10235 views

Laravel5.4 - login with facebook in laravel

Hello today we are share with you one new articel/tutorials related how to login with facebook laravel. currently login with facebook laravel is mostly required in most of laravel application. Some time you need to implement in your lravel application singup and singin functionality using facebook API. most of devloper very tired ith this problem, so we are make one very easy tutorial for login with facebook laravel and it share with you. login with facebook laravel is a not big deal with .....

Continue reading By : Laravelcode June 26, 2017 Category 58121 views

Laravel5.4 - Prevent Browser's Back Button Login After Logout

In this tutorials we are sharing with you one common web securite issue in laravel project. you are many time notice in laravel onece your are login in your laravel application and and then after logout from laravel application and then you press your browser back button. you realise your previes page is show which you are open befor logout. So, this is not good for securite perpouse, so how to fix this issue in laravel application with very simple way. when you are logout from laravel applic.....

Continue reading By : Laravelcode June 22, 2017 Category 28589 views