Tuesday, October 18, 2016

How to pass parameter from one page to another in Laravel? | How to hide parameter from URL/ Route in Laravel?

How to pass parameter from one page to another in Laravel? | How to hide parameter from URL/ Route in Laravel?

In this session I'm gonna write about how you can pass parameter from one page to another and while passing the value how you can hide it. Let's start the discussion... 1.  Suppose I want to send a parameter through a button from the first page to another page. Here, suppose course_id . <li> <a href="{{route('registration',['course_id' => Crypt::encrypt('1')...

Laravel Event | How to send Email using Laravel Event?

Laravel Event | How to send Email using Laravel Event?

1. First Configure your Email Setting in you project. Do the necessary changes on .env file. 2. Run the following command first inside of your project using cmd. php artisan make:event SendMail 3. This will generate a SendMail.php file inside App\Events directory. The file would be like this after writing the necessary codes : <?php namespace App\Events; use...

How to Upload Laravel Project on Subdomain?

How to Upload Laravel Project on Subdomain?

If you need to upload a Laravel Project on a Subdomain of Live Server. Here is the short tutorial on it. If you have already created a subdomain. Then you can just upload the files and route the server to public_html where you upload the files. If you don't have the subdomain, then you have to create the...

Monday, September 5, 2016

How to upload file into Dropbox in Laravel | Working with Dropbox API to upload file | Laravel 5 dropbox api file upload

How to upload file into Dropbox in Laravel | Working with Dropbox API to upload file | Laravel 5 dropbox api file upload

Dropbox a popular file hosting provider provides cloud storage till 2GB for free user. In this tutorial we'll use dropbox api to upload file into dropbox. By using dropbox we can keep backup of out project files, database and so on. So let's start how we can do it .. 1. First we need to install thephpleague/flysystem-dropbox package in our...

Sunday, September 4, 2016

How to Export CSV/xls/xlsx from Model in Laravel | How to Download Table Data / Database to CSV /xls / xlsx in Laravel?

How to Export CSV/xls/xlsx from Model in Laravel | How to Download Table Data / Database to CSV /xls / xlsx in Laravel?

In this tutorial I have shown you how you can download/ Export database to CSV/ xls/ xlsx. Sometimes we need to download the database as csv or excel format for seeing the report of the project. Here we used Maatwebsite/Laravel-Excel package for generating the csv or excel format.So lets see how we can do it..1. First we need to install the Maatwebsite/Laravel-Excel package...