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 696 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 371 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 333 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 967 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 688 views

How to install laravel in android phone

In this tutorials i gonna share with you Amazing artical, "How to install laravel in your Android Phone". this artical is very helpfull for performe a small tack for laravel on your Android phone without open your PC or laptop.so let's start. i will explain all thins one by one. so please followed all step and you can easely install or run laravel applilcation in your Android Phone. Step 1 : Install "Termux" Aplication from Google Play Store Termux is provide all fu.....

Continue reading By : Laravelcode June 21, 2017 Category 258 views