How to Create and Check Custom Header with Middleware for REST API in Laravel?
In Laravel 5 REST API project sometime we need to create create our own custom header for security. like : 'X-hardik':'123456'. this was example, that means in your current project your every request .....
GROUP_CONCAT with different SEPARATOR in Laravel Example
Whenever, you need to use GROUP_CONCAT with differente separator(I mean default separator is ',', But you want to change '@','#','&' etc as you want). then you have to use use SEPARATOR keyword in GRO.....
Laravel Redirect Back to Previous Page After Login Example
Hello Guys, This article will provide an example of laravel after login redirect back. if you want to see an example of laravel redirect to previous page after login then you are in the right place. s.....
How to count unique domains from email address field in MySQL ?
you want to count domain from your email address field in mysql. if you are working on PHP then you could do easily by using explode function and counting domains, but that way is a very bad logic and.....
How to Count Files in a Directory using Laravel?
you are working on laravel framework and you want to count how many image or files in folder and print of front then you can do with laravel "File" class.you can also count in core PHP by using glob().....
How to Check Undefined, Empty and Null in JQuery?
If you are working on jquery and However you want to check variable is undefined or not then you can easily check by typeof operator, which is simple, fast and cross-platform: <pre class="language-jav.....
How to Get Query Log in Laravel Eloquent?
Hi Developer, This tutorial shows you how to get query log in laravel. you will learn how to log query in laravel. we will help you to give an example of how to check query in laravel. you can underst.....
Mysql procedure with pagination in laravel?
You are working on laravel with mysql database. you had created mysql procedure for get data and you want to call procedure with pagination in laravel 5 then you can not directly make pagination as la.....
How to Set URL without Http of Other Site in Laravel?
you are working on laravel php framework and you want to give any other site URL. we can easily give url using a tag like href="https://www.facebook.com" but if you are work on laravel then it can't r.....
How to Create Responsive Menu in HTML/PHP ?
Now i am going to show how to create responsive menu in your html website. i will show you how to create responsive menu using css, html and jquery. we have to also use media query. it is a pretty sim.....