I swear I don't have anything against Vite for local JavaScript development! It's just that there's alternatives out there. One such alternative is Parcel.js.
All posts tagged with "php":
Laravel + Inertia.js + Vite provides a great development experience. It is ideal for any fullstack project you're working on. When I recently rebuilt my blog from scratch in Laravel 11.x, I loved work...
I know that utility-first frontend frameworks are all the rage these days, but I'm a purist at heart and think that inlining a bunch of styles with your markup is a recipe for disaster. It may be fine...
At this point we've built the basic CRUD for our blog app, but now we want to add some functionality that will prevent unauthorized access to certain areas of the blog. For instance, we want to preven...
Now that we've got our project set up and our database prepared, we can start setting up the frontend routes to our Laravel blog.
Welcome back! We're going to continue building our blog in Laravel. Let's create the components needed in order to store our blog in a database.
Today we will create a blogging app using the Laravel framework for PHP. Why Laravel? Laravel has most of the functionality you'll want when creating a web application, pretty much out-of-the-box. Wit...
If you’ve ever used Ruby on Rails, you know it has an amazing console that allows you to execute code within a fully bootstrapped application environment. We can accomplish the same for PHP apps with the clever use of command-line arguments...
The observer pattern is an ideal form of extending a program’s functionality. In a nutshell, it allows you to run arbitrary code by subscribing to events that are triggered during program execution....
Magento’s layout XML is really unique because it allows you to override the presentation elements of an eCommerce site in a variety of ways. At the simplest level, an XML layout file determines whic...
Lately, I have been having a problem with Magento (version 1.5.0.1) and how it is handling 404 errors in the admin. Basically, any time I go to a non-existent admin URL, I am getting redirected to the...
Since I have been working with the Magento E-Commerce software as of late, I will be publishing a series of blog posts to share what I have been learning with everyone. For those of you who don’t k...