Testing Packages on Composer with Specific Commit Before Creating New Tag

Composer, which is a modern developer tool for dependency management for PHP. It is used to declare the dependencies your project depends on it and it manages them very well for you. It is incredibly flexible to manage the dependencies in various stage of your project. Let's suppose...
Read more...
SecurePay Integration with PHP

SecurePay Integration Guide for Omnipay v3 PHP Library with Laravel

I've already covered few Omnipay integration guides with my previous blog posts. In this post, I'm going to explain in detail about SecurePay, a leading payment solution for businesses of different sizes over Australia. I've recently contributed to the v3 release of the omnipay-secure...
Read more...

Australia Post API — Location & Postcode Predictive Search

Last Updated: 22nd Sep, 2020 In this article, I'm writing about auto-suggesting postcode, the suburb of Australia with Australia Post API while filling up the address form. I was recently working with an Australian client, it was an e-commerce platform to sell their products online....
Read more...

PSR-2 Coding Standard – Automatically Format in Sublime Text

It is always really nice when a code editor allows fixing your code to PSR2 coding standard by just hitting a single command. At my work, we heavily use Laravel framework, which follows the PSR-2 coding standard. So, every day we create new packages, add new classes we firs...
Read more...
instagram feed.jpg

Instagram Feed – Building Gallery with Real-time Data via Instagram API

I recently wrote an article about building an RSS feed section to publish Facebook Instant Articles automatically. In this article, I will show how to build a gallery on your website with the picture you have uploaded to your Instagram account. In this tutorial I'll show you an easy w...
Read more...
trending.jpg

How to Create A Trending Articles List using Google Analytics with Laravel

In this article, I will guide you about building top trending articles using Google Analytics API with Laravel framework. Recently I built this feature for my own blog, if you would like to view it open up the home page of my blog and see around the right sidebar. I have used the po...
Read more...
rss.png

Publishing Facebook Instant Articles via RSS Feed with Laravel

If you want to publish your web articles to Facebook Instant Articles platform and looking for the best way to export your quality articles from your blog to Instant Articles platform without worrying much about configurations, then you're at the right place now. In this post, I will...
Read more...

PayPal Instant Payment Notification (IPN) Handling with Laravel

This is a follow-up article from my previous post A guide to Integrate Omnipay PayPal with Laravel, at the end of that article I have mentioned that I will be writing about handling PayPal Instant Payment Notification (IPN) with Laravel. So finally it is published, so you can go throu...
Read more...

Adding Custom Header with Response in Laravel

I was working out for the best way to add some custom header to my application for most of the view responses, I wanted the header to be "Cache-Control: no-cache, must-revalidate". I came up with the best solution with a laravel middleware and decided to share the code snippets...
Read more...

Generating Never Expiring Facebook Page Access Token

I’ve been working on the new feature for my own blog to auto-posting the posts from the website to the facebook page via Facebook Graph API. My logic was just to make the process automated when I publish new blog post on my website end. Below, I will cover the processes that ar...
Read more...