How to send email in laravel using markdown

Laravelcode share with you how to send email in laravel using laravel markdown functionality. it is very easy and very simple. so we are write here and share with you very easy way how to send email using email markdown in laravel. In laravel 5.4 send email functionality something change. in laravel 5.4 provided email markdown functionality for send email Markdown mailable messages allow you to take advantage of the pre-built templates and components of mail notifications in your mailables.....

Continue reading By : Laravelcode July 3, 2017 Category 753 views

How to integrate paypal payment gateway in laravel 5.4

Hello, today laravelcode share with you a one of the very nice tutorials of how to integrattion paypal payment gateway in your laravel to very easy way with simple example and with working code. You are need to integration payment gateway in many laravel application and many developer guss is to hard but it is very easy and simple problem. here we are help to you how to integrate payment gateway in your laravel application with paypal. Today paypal is major and world most very usefull paym.....

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

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 1356 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 422 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 440 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 481 views