Category: Laravel
-
How Session Works In laravel?
Hello to all, welcome to therichpost.com. In this post, I will tell you, How Session Works In laravel? Laravel is one of the top php mvc framework. I personally like sessions very much because we can easily store information across full website. Here is the working methods for sessions in laravel: //Very First you need to call the session into…
Written by
-
How to add dynamic id to data-tables tr with ajaxify content in Laravel?
Hello to all, welcome to therichpost.com. In this post, I will tell you, How to add dynamic id to data-tables tr ajaxify content in Laravel? Laravel is one of the top php mvc framework. Datatables are the powerful jquery plug-in and it is used to create table listing with sorting and searching and many more functionality. I personally like data-tables very much because it is…
Written by
-
How To Create Custom 404 Error View in laravel?
Hello to all, welcome to therichpost.com. In this post, I will tell you, How To Create Custom 404 Error View in laravel? Laravel is one of the top php mvc framework. Today I am going to tell you, How To Create Custom 404 Error View in laravel? Laravel provides us basic 404 page but we can make it custom with…
Written by
-
Data-tables with ajaxify content in Laravel
Hello to all, welcome to therichpost.com. In this post, I will tell you, Data-tables with ajaxify content in Laravel. Laravel is one of the top php mvc framework. Datatables are the powerful jquery plug-in and it is used to create table listing with sorting and searching and many more functionality. I personally like data-tables very much because it is well-mannered listing of content in table…
Written by
-
Datatables with dynamic data in laravel
Hello to all, welcome to therichpost.com. In this post, I will tell you, Datatables with dynamic data in laravel. Laravel is one of the top php mvc framework. Datatables are the powerful jquery plug-in and it is used to create table listing with sorting and searching and many more functionality. Today, we will use data-tables in laravel with dynamic…
Written by
-
How laravel abort_if() helper throws custom text for an exception?
Hello to all, welcome to therichpost.com. In this post, I will tell you, How laravel abort_if() helper throws custom text for an exception? Laravel is one of the top php mvc framework. Laravel has so many good helper functions and abort_if() function is one of them because I with this we can give custom text for an exception. Here is…
Written by
-
How to Setup Laravel Default Login Authentication?
Hello to all, welcome to therichpost.com. In this post, I will tell you, How to Setup Laravel Default Login Authentication? Laravel is one of the top php mvc framework. Let’s Start the Authentication In laravel: Laravel comes with Default Login Authentication, you just only run one command to add this and this is very easy and interesting. Here is that command,…
Written by
-
How to pass multiple variables to view in Laravel?
Hello to all, welcome to therichpost.com. In this post, I will tell you, How to pass multiple variables to view in Laravel? Laravel is one of the top php mvc framework. Here is the working code and I added this code in laravel controller file: //Controller code $STATS_BOOKING = //db query $STATS_SERVICE = //db query $STATS_STAFF = //db query…
Written by
-
How to merge two laravel mysql queries data in one json?
Hello to all, welcome to therichpost.com. In this post, I will tell you, How to merge two laravel mysql queries data in one json? Laravel is one of the top php mvc framework. In this post example, I will have two mysql queries and both two mysql queries data will be get in json in one variable. Here is…
Written by
-
How to get time in 24 hours format in laravel raw query?
Hello to all, welcome to therichpost.com. In this post, I will tell you, How to get time in 24 hours format in laravel raw query? Laravel is one of the top php mvc framework. Here I am sharing example code for get time in 24 hours format in laravel raw query. //start_time = “3:40” DB::raw(‘STR_TO_DATE(start_time, “%l:%i %p”) as start’)…
Written by