Laravel + Inertia update resources small issue
I was migrating a personal project from a Laravel Blade component-based setup to an Inertia.js + Vue.js stack. The migration itself went smoothly. I leaned heavily on AI during the…
I will dedicate this section of my website to ‘Today I Learned’ shorts. Whenever I learn something new in my day, I’ll publish it here for two main reasons:
1. It serves as documentation of the problems I’ve encountered, allowing me to revisit it when needed.
2. It helps someone, somewhere!
I was migrating a personal project from a Laravel Blade component-based setup to an Inertia.js + Vue.js stack. The migration itself went smoothly. I leaned heavily on AI during the…
First of all, this post is a mix of documentation for my future self and a small celebration of my first accepted WordPress plugin. This one: Mohcin Taxonomy SEO for WooCommerce
In my Laravel hobby project, I had a field called date_covered defined as a date type, with now() as the default value. However, when I needed to manipulate this field,…
Are you struggling to find extensions in your Windsurf IDE? I was in the same situation! After upgrading to the latest version, many users have reported that searching for extensions…
Many developers, when adding a “reply to comment” feature in a Laravel app, often consider creating a separate sub_comments table (I was one of them, based on my lack of…
In software development, there are two important concepts: synchronous and asynchronous behavior. JavaScript developers, especially those who use vanilla JavaScript, know these well because of how promises work. I like…
When you are working on a local project and using a GitHub Access Token to push your code, you might face an issue when the token expires, and you forget…
Problem When working with Laravel and Inertia.js, pagination returns an object instead of an array. This can make looping over the results a bit tricky, as the expected array structure…
Problem: Recently, while developing a feature to update resources in my Laravel app, I faced an unexpected issue: the create functionality, which had been working previously, suddenly stopped functioning. When…
In the field of software development, mastering delegation is a must. I’ve always known this from learning and practicing in real-life work scenarios, as well as from various web conferences…