The Facade Class, which tells Laravel which registered (underlying) class it pertains to A Service Provider, which registers the underlying class in the App container The Use Case Let's say we have a class which we want to generate a Facade for. This class might be Fideloper\Example\Underlyi...
The core settings of your Laravel application – database connection, queue and mail settings, etc. – live in files in the config folder. Each of these files returns an array, and each value in the array will be accessible by a config key that is comprised of the file-name and all ...
I get asked a lot about how you work with Laravel. So in this tutorial, I will walk through my typical approach to building a Laravel application. We will create an API because it is something I love doing. The API we are building is a basic to-do style application, where we can ad...
Helpers in this group provide functionality to manipulate array elements. More often than not, you'll want to perform different operations on array elements. So this is the place where you should look first to see if what you're looking for already exists. Paths I find the helpers in this ...
In this tutorial, we will explore how to create a Laravel 8 application from scratch and then prepare your application for development. However, the overall process changed from the previous version (Laravel 7), improving the developer experience with a fresh set of tools. Now, the new Laravel...
In this tutorial, I'll show you how to create a landing page using a combination of Laravel 8, Vue.js, and SendGrid. It's a reasonably long tutorial. By the end of it, I'm confident that you'll have learned a lot. Prerequisites To complete the tutorial, you will need the followin...
How to use laravel queue and job functionality in bagisto app. When we builing the web application sometimes we need to read and write large amount of data but as we know php maximum time execution is 30 seconds if we upload or read big file data php wil
In this tutorial, I’ll show you how to create a landing page using a combination of Laravel 8, Vue.js, and Twilio SendGrid. It’s a reasonably long tutorial, and by the end of it, I’m confident that you’ll have learned a lot. Prerequisites To complete the tutorial, you'll nee...
In this tutorial, we’ll make your Laravel app multi-tenant using the Tenancy for Laravel package. It’s a multi-tenancy package that lets you turn any Laravel application multi-tenant without having to rewrite the code. It’s as plug-and-play as tenancy packages get. Side note: In this...
Whenever you need to convert object to array in your php project then you can do that using (array). It is a pretty simple example to convert php object into array that way you can use array. So, let's see the following example. ...