Download files from storage in Laravel
A filesystem is often an underrated but very important factor in web development. Downloading files from storage in laravel application is even easier with...
Force http to https redirect in Laravel
HTTPS is a secure version of HTTP. HTTPS helps keep your browsing safe by securely connecting your browser or app with the websites you...
Multiple database connections in a single Laravel project
Recently, while working on a project, I came across a situation where I have to work on multiple databases. As I was working on...
Search in Multiple Model using laravel-searchable
Spatie team recently released a new open source package called laravel-searchable . This package simplifies the search between multiple models. In this article,...
A complete Image validation rules in Laravel
Laravel provides a lot of validation rules which makes our development process faster and easier. In this post, we are going to explain a...
Create custom helper functions in Laravel 5
Laravel Helper is a simple PHP global functions that you can use to save your time in writing some repetitive codes. Laravel provides more...
7 laravel helper functions to make your life easier
Laravel provides a lot of global helper functions which are also used by the framework itself. These helpers functions can be used by us...
How to use Config file in Laravel
All of the configuration files for the Laravel framework are stored in the config directory. There are a lot of configuration files by default...
How to check current URL in Laravel 5
When working with the web application, we often need to check if the current URL matches some conditions. To check current URL in blade...
Save user last login time and IP address in laravel 5
Laravel has an amazing authentication system. Everything comes out of the box unless you want some changes to the original system. In this article,...