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 ...
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. It’s quite common to include search option and pagination functionality for displaying any type of large data. So instead of using some table extenders which fetch all the records ...
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, [crayon-5ae0c9278c6b6777176575/] ...
Hello everyone, Welcome back to justlaravel.com. In the previous post, we discussed about custom authentication in laravel, here we ‘ll add one more cool feature of this elegant framework, which is validation. Working Demo Project on Github Validation rules We ‘ll here add some validation rules to login and register forms from ...
Hello everyone, welcome to justlaravel.com. As routing and pagination are very simple in laravel, authentication is not much different, it is very simple too, everything is configured out of the box. Working Demo Project on Github By default, laravel comes with 2 authentication controllers: Auth Controller and Password Controller. Auth Controller, handles ...
Hello everyone, welcome to justlaravel.com. Here we ‘ll see, how easy is pagination in laravel, in the previous post we saw about routing in laravel, here pagination is much more simpler than routing. Working Demo Project on Github In the last post we just showed all the data from the database, here ...