Updated 3 months ago
How To Run Laravel Queues On Shared HostingPHP out of the box runs each line of code in a sequential order (from top to bottom). This means until the first operation is done executing the next one will have to wait. Generally, this is not a problem since most tasks don't take that long to complete, but other operations lik...
Published 5 months ago
How To Store And Access Array Data From Laravel's .env FileIn Laravel, configuration settings are typically managed using the file, which stores key-value pairs that define the behavior of the application. This format works well for most configuration settings. But what if you need to assign a list of values to a single key? Let's consider a sc...
Updated 7 months ago
Using Surreal DB With Laravel|PHPAmong the many nice things that Surreal DB provides, the one that is most interesting to me is how it handles relationships. I have been trying it out and liking it. I do a lot of PHP and so my first instinct was to look for the Surreal PHP package. Well since it's relativel...
Updated 7 months ago
Removing "Public" From Laravel URL Routes On HostingerThe Laravel framework has an file within its public directory. This serves as the entry point for all incoming traffic/requests. This means the only way to access any route is to go through the directory. Thus to reach , you would have to visit . In the rest of this articl...
Published 7 months ago
Using A Subdomain Name On Hostinger: A Step-by-Step GuideIn this post, we'll explore the process of linking a subdomain from another provider to your app or website hosted on Hostinger . I will be using ...
Updated 7 months ago
Converting Bootstrap 5 Styles To Tailwind (WIP)This article is still in progress (WIP). If you'd like, you can subscribe to receive notifications whenever new content is added to just this article. My goal i...