Creating and running jobs and worker queues in Laravel 10
Laravel jobs and worker queues are for doing tasks that are too long or intensive to do during a typical web request such as processing or parsing an uploaded file….
Laravel jobs and worker queues are for doing tasks that are too long or intensive to do during a typical web request such as processing or parsing an uploaded file….
A very simple and easy-to-implement dark and light mode button switch built with React using Tailwind CSS. This method uses a state to check if the theme is set to…
Writing out conditionals in React that change the state of your Application. The conditionals are written very similarly to Javascript but you have to consider the rules of JSX. The…
A state in React holds information that impacts the DOM render and is managed within a component. Whenever a state is changed the component re-renders thus manipulating the DOM. You…
The process of learning React JS, This post details the use of React with Laravel through a very modern method via the use of Inertia JS. InertiaJS brings the functionality…
React JS or just React is a very popular Javascript framework created by a software engineer at Facebook. The main focus of React is to build user interfaces (UI), with…
In Laravel the updateOrCreate() method is used when you want to perform an UPSERT which is to “UPDATE if key/s exists else do an INSERT”. The method consists of 2…
8.2 is the latest major version of PHP, which was released on the 8th of December 2022. You can read up on new features and changes here. To install PHP…
Using invite codes for registrations with the Laravel invite codes package. Having invite codes for your web application means you can limit who you want to register. The Laravel Invite…
Use pretty URLs for your Laravel project by implementing slugs and avoid the integer id as the route key. The following 2 URL examples are for the route /location/{location} This…