Hello readers of justlaravel.com, am back with a new post, here we will see how to read data from a CSV file, parse it and store it in our local database and finally display them in our view. While working with data we come across different data formats like XML, CSV, JSON, SQL, and others. ...
Hello readers, I am back with another post to let you know how to implement datatables plugin in laravel. Datatables is a jQuery plugin for table extender, it provides the functionalities like search, sort, pagination on a table of information to handle the data more effectively. Earlier we implemented search, pagination, pagination on search results ...
Hello readers, am back with another tutorial to discuss about performing Create Read Update Delete(CRUD) operations in laravel using ajax. In previous tutorials like integrating bootgrid plugin there are CRUD operations but they are without ajax, every time the operation is performed the page may reload and show the information. But here all the CRUD operations ...
Hello readers, here we will discuss an interesting topic now, the most asked and debated question – Laravel project in shared hosting? Some say you can and some say you should not do it. Here we will discuss when to deploy our project to shared hosting and how to deploy in shared hosting. When to deploy ...
Hello readers, am back with another tutorial, here we will see how to use cryptography – cryptographic functions like encryption,decryption for handling and managing sensitive data and hashing algorithms for storing and handling passwords in laravel applications. We all know that when there is some sensitive data to be handled in a application we need to use some ...
Hello readers, here we will discuss about jQuery Bootgrid plugin which is a powerful table extender. This Bootgrid plugin provides the functionalities which a table needs like search, sort, pagination, earlier we implemented search, pagination, pagination and search functionalities separately in laravel. Now we will implement those with Bootgrid plugin in our laravel application. Working Demo ...
Hello folks, here we ‘ll know how to send emails using sendgrid in laravel. We have many ways to send emails in laravel, we can send emails using plain php or we can use email service providers like SendGrid, mailgun, mandrill and many more. As one of the follower of this site justlaravel.com has request me ...
Here we ‘ll look at the visualization of data using highcharts. Generally, data visualization presents the data in a graphical or pictorial format so it helps the readers to easily understand the data. Highcharts.com provides with a lot of different types of charts – line, area, bar, column, pie and many more. Here we ‘ll ...
Hello everyone! Welcome to justlaravel.com. In previous posts, we saw about pagination and search functionality individually. Here we ‘ll combine search functionality with paginated data results. You can also watch the video on YouTube here. Working Demo Project on Github It’s quite common to include search option and pagination functionality for displaying any ...
Here we ‘ll see how to implement search functionality in Laravel. we ‘ll search the data from the database and show the search results in a table. Working Demo Project on Github You can also watch this video on YouTube here Search form : First, let’s create a form for search field, <form ...