Laravel and PHP Setup from Scratch
To Install the updates you need to have a ubuntu 16.04, 18.04, or 20.04 server with a non-root sudo-enabled user account and a basic firewall. Read more
Api Authentication using Laravel Sanctum
Laravel Sanctum was introduced in the Laravel 7.x version. This feature provides us a simple authentication framework for SPA (Single Page Application). Using Sanctum we can produce various for a user and these tokens may be conceded with various scopes. For eg., post:create scope, etc using this scope we can permit the user to perform an action.
Google Pay integration for web applications
In this blog, we are going to integrate Google Pay payment method in our PHP website using AuthorizeDotNet. We will mainly focus on what to do after generating the payment token. To add a Google Pay button and generate a payment token you can visit the official website.
What’s new in PHP 7.4?
Since the arrival of PHP 5 out of 2004, its performance has multiplied and maybe, even significantly increased. PHP 7.4 brings loads of new highlights, language structure increments and fixes. It was discharged on November 28, 2019. In this blog you’ll find a list of PHP 7.4 features that are new and will help you upgrade.
When should you create a child theme in WordPress?
It is recommended to create a child theme if web developers have to add new features in the website which are NOT supported by parent theme and parent theme updates are required to get new features and support from theme providers. Read the blog to know more.
How to Verify iTunes, Android and Amazon Subscription Status from Backend Server?
When your application has in-app purchase subscription, either auto-renewal or not, you might need to check the subscription status whether still active or it has expired. To check if the user still has a valid subscription when their subscription period is about to end, you will need to do re-validation on the purchase token. Read the blog to know about its process.
Upgrading Symfony to Latest Long Term Support (LTS) version
It has been long since Symfony 2.6 was introduced, so there are going to be a lot of changes in the latest version. We will be covering the major changes in this blog. Instead of upgrading directly to the Symfony LTS version, first, we will upgrade to Symfony 2.8, then 3.4, then Symfony 4.4.
How to analyze MP3 files in Laravel?
We can analyze MP3 files in Laravel by using wapmorgan/mp3info package, the fastest PHP library to extract MP3 meta information and tags. Read our blog to understand the further process of installation, usage, list of API and performance.
Update your project to Laravel 6 from Laravel 5.8
To update your project from Laravel 5.8 to Laravel 6, there are many changes that you need to make in your project, it also depends upon the project type. You can check what all is required in this process and how it is done by reading the blog
Laravel Queue and running it with Supervisor
A queue data structure is based on FIFO (First In First Out). That is the element that enters first in the queue, leaves first while popping the element from the queue.