Articles & Tutorials
for you to read...
- JavaScript Async Await
Working with JavaScript Promises you have a couple of approaches to consider for interacting with the response. The Promise doesn't give you the response in the exact format you can work with, let's dive in and explore things.
- JavaScript Promises
JavaScript Promises are used in most modern web applications where we need to do some work that takes some time to complete. A popular example of this is fetching data from an API, where the result is needed to be displayed in your app.
- Using JavaScript To Access URL Segments
Whilst working on a recent project, I wanted an accordion navigation to remain open depending on what the category segment in the url was displaying.
- Managing Redis Locally For Laravel Projects
I recently found a neat app for managing your local databases from the makers of TablePlus. Read a short review of it.
- Laravel Testing Using GitHub Actions With MYSQL
Using GitHub actions for automating your Laravel tests is fairly straight forward, given the starter workflow they provide.
- Laravel Valet Installing PHPRedis with PECL/Homebrew
This post was written 3/2/2020 and explains how I got Redis working using Laravel Valet.
- VueJS Auth Using Laravel Sanctum
How to set up basic authentication using Laravel Sanctum in a VueJs SPA.
- Adding Tailwind To a VueJS Project
Simple instructions for setting up Tailwind CSS in your VueJS projects.
- Update A User Profile In Laravel
If you need to update other fields along with a unique field then you need to tell the unique rule to ignore the user's ID.
- Basic Module Pattern JavaScript
Wrap your code in an immediately invoked function expression (IFFE). It runs immediately when you create it and has no name.