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 ...
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 ...
Hello everyone, welcome to justlaravel.com. Here we ‘ll see about routing in laravel. All laravel routes are defined in routes.php file (located at app/Http/routes.php). Routing is very simple, clear and one of the coolest features in laravel, we can see all the pages, where they are linked in a single place. Working Demo ...
In the previous post, we saw how to set up a database in laravel. Now here we ‘ll create database table. First create a database, here am using phpmydamin in localhost to create a new database named justLaravel, edit the settings in .env file or/and database.php file as said in previous post, setting up databse ...