Laravel - Gulp Error Cannot Find Module Laravel-elixir - Solved
If you also find error like "laravel-elixir not found" on gulp then you can install laravel-elixir npm package manually. I also fetch this error when i was new in laravel and working with gulp first t.....
How to Get Last 2 Days Records from Table using MySQL Query?
We may sometimes require to get few days ago records from table like last 2 days, last 3 days, last 10 days or last 15 days etc. Most of developer choose other logic but we can easily get using mysql .....
How to Clear Log File using Command in Laravel?
I was working on my laravel project, i found one issue that too much load my log file when i open and i want to remove that data, i mean hang my system and must need to restart my system. I thought wh.....
Git - fatal: Failed to connect to bitbucket.org port 443: Network is unreachable - Solved
When i was working on my project repository i found error "fatal: unable to access 'myrepo' Failed to connect to bitbucket.org port 443: Network is unreachable" few day ago. when i going to just git p.....
Bootstrap Form Validation using Validator.js Example
We always need to add validation on form like registration form, contact form, login form etc. we always prefer to give validation error after page refresh but you can give validation without page ref.....
How to Get Current URL in Laravel?
Hey Friends, This article is focused on how to get current url in laravel controller. you can understand a concept of how to get current url in laravel blade. step by step explain how to get current u.....
JQuery Tooltip Example using JQuery UI Plugin
Jquery UI is a lots of collection of GUI widgets like datepicker, tab, timepicker, colorpicker etc. Jquery UI also provide tooltip GUI widget that way we can set text and display when hover on specifi.....
Laravel GEO Chart using Lavacharts Example
Today, i going to give you example of how to add geochart in your laravel 5 application using lavacharts package. Normally we used geochart on back-end for check users country wise with graphical way......
How to Get File Size from Storage in Laravel?
We sometimes require to get file size from path in laravel, so if you need to get file size from url then no worry and you can get using File facade. File facade provide several function that way we c.....
Bootstrap Fancy Alert Box using SweetAlert Example
We always require to give alert box when something success, warning, info etc. we always use alert() of jquery function, If you used twitter bootstrap then you can use SweetAlert Plugin with fancy ale.....
Laravel Generate PDF from HTML View File and Download Example
Normally, if we work on big ERP level project on laravel, we require to generate PDF file for data from database table. In this tutorial i give you very simple way to create pdf file and give to downl.....
How to Remove Duplicate Values from Array in PHP?
It is pretty simple to delete duplicate values from PHP Array. But sometimes we confuse for how can we remove. But PHP provide pre-define function array_unique that can help to remove duplicate values.....