All your forms in one place. Formie handles the validation and processing, you handle the integration. No servers required!
Category: Coding
Use SQLite Database in Laravel project
A quick tutorial showcasing how to set up a local SQLite database for a Laravel / Lumen project within PHPStorm and VSCode.
What is CRUD? – PUT vs PATCH
CRUD stands for Create, Read, Update, Delete. These are the basic capabilities required when it comes to dealing with data in a storage system like a database. From an API perspective, the following methods areContinue reading
PHP: Key exists in array
How to check if a key exists in an array. Here are some quick examples
HOW TO: Create Lumen API – Basic
Learn how to build a basic API with the Lumen framework. All CRUD functionality, migrating and seeding a local sqlite db and unit testing the API.
SERVERLESS what is it and how it works
This blog post is part of a series that explains SERVERLESS. This series will show you in really simple terms what SERVERLESS is, how it works, how to use it and why the IT worldContinue reading
Angular – Populate UI with data – Part 3
Angular Project Content: Part 1 – Setting up the project Part 2 – Routing & Customisation Part 3 – Populate UI with Data (this one) Populate Cards 1. Open my-dashboard.component.css and replace all the content with theContinue reading
Angular – Routing and Customisation – Part 2
Content: Part 1 – Setting up the project Part 2 – Routing & Customisation (this one) Part 3 – Populate UI with Data Routing Read more about angular routing and navigation, here. Make sure you readContinue reading
HOW TO: Build Angular 6 App – Part 1
In these series of articles, I will demonstrate step by step how to build a really simple Angular 6 web application, using Angular Material. This application will call a free API, called DOG API. All thisContinue reading
HOW TO: Validate multiple images input in Lumen/Laravel
In this short post, I will show you how to use the Lumen/Laravel validation to validate multiple images in an array. 1. Make sure you are posting an array of images to your endpoint images[]Continue reading