The below tutorial does following steps
1. Create a database backup
2. Zip the backup
3. Receive email notification concerning backup results
4. Create a backup schedule
5. Delete old...
The manifest.json file is only available till the command npm run dev is running and gets deleted after that. To have this file in your filesystem you need to run the build command
Fixed by running...
Laravel version 9.18 has introduced a fake helper, which can be used to generate fake data in your application. This can be used while UI prototyping or generating test data for testing and generating...
By default Tailwind’s container does not center itself automatically and does not have any built-in horizontal padding.
Centering the Container
To center the container add the mx-auto utility
<...
When you are using TailwindCSS in some cases you might want to add a prefix to your tailwind utility classes so that it doesn't mess up with your other library.
I often do this when I am using both b...
In this article let's go over how we can install TailwindCSS on an HTML project. The simplest and fastest way to get up and running with Tailwind CSS from scratch is with the Tailwind CLI tool.
1. In...
Edit the Nginx configuration file for the site (not the server), replace the location ~ \.php$ block with following
location ~ \.php$ {
try_files $uri /index.php?$args;
f...
Hi, I’m Valerio software engineer, founder and CTO at Inspector.
As a product owner, I know how hard it could be to fix a software issue. Especially when it negatively impacts the users’ experience...
TailwindCSS is a popular utility first CSS framework. In this article, we will go over how to install TailwindCSS on Laravel which is a PHP Framework.
1. Create a Laravel Project and Dependencies Ins...