Author: therichpost
-
How to get all the events related to same resource id in fullcalendar on event-click?
Hello to all, welcome to therichpost.com. In this post, I will tell you, How to show all the events related to same resource id in fullcalendar on event-click? fullcalendar is the best A JavaScript event calendar. Customizable and open source. Here is the working code for get all events in fullcalendar related to same resource id: eventClick:…
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
-
Monthly Blogging Google Analytics Report
Hello to all, welcome to therichpost.com. In this post, I am first time sharing my website traffic report. After three months my website successfully achieved 5000+ views and 1200+ unique visitors and I am very happy with response and I am very thankful you to all. I am working hard on my blog because I…
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
-
How to change fullcalendar day heading text and color?
Hello to all, welcome to therichpost.com. In this post, I will tell you, How to change fullcalendar day heading text and color? fullcalendar is the best A JavaScript event calendar. Customizable and open source. Here is the working code for change fullcalendar day heading text and color: dayRender: function(date, cell) { var today = $.fullCalendar.moment(); var end…
Written by
-
How to use Union query in laravel?
Hello to all, welcome to therichpost.com. In this post, I will tell you, How to use Union query in laravel? Laravel is one of the top php mvc framework. Today I will do Union query laravel. Union query is use to get same number of fields from multiple tables and I personally like it very much. Here I am…
Written by