Automatically Posting to Facebook Page via Laravel Notifications

 A powerful feature that came out with Laravel v5.3 was Laravel Notifications. There are several numbers of notification channels created by the contributors in a github organization called laravel-notification-channels. The notifications feature is fully available with lat...
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...
Make Composer Faster

Speed up your Composer Install or Update Process

We all know that, whenever we go for running composer update, we, of course, need to wait until the dependencies are loaded and download. It usually takes up to 5-10 minutes to complete the full process of pulling down from the package hosted server. This waiting time depends on the p...
Read more...
Integrating Medium Style Image Zoom

Integrating Medium Style Image Zoom

I'm sure you already know about Medium, a widely used and popular publishing platform to share, articles, important stores over the internet. Medium – Read, write and share stories that matter. Medium is an online publishing platform developed by Evan Williams, and launched...
Read more...
authorization.jpeg

Authorizing New Device based on IP Address, with Laravel Middleware

I recently saw few of the e-commerce & payment gateway sites using device authorization system based on IP address, browser etc. I was also working on a same for my client's web app recently so wanted to share a detailed post with the community people. In this blog post, I will g...
Read more...
share.jpeg

A Complete Guide to Integrate Facebook Like and Share

Nowadays social media platform has grown a lot more and really helpful in marketing, sharing information, communication etc. So here in this post, I am going into detail about how to integrate the Facebook social plugin, with real-time Like, Share button on your products links or blog...
Read more...
guid.jpg

Create unique GUID with PHP

In this blog post, I am going to write about my little PHP package for creating globally unique identifiers (GUID). Begin with installation via Composer: composer require sudiptpa/guid I was inspired mainly to create this package while I was searching for GUID information in the ph...
Read more...

Set your Preferred Domain on Laravel Application

In this blog post, I would like to show how to set preferred domain from your application context. Before diving into the code, let's understand why the preferred domain is much important for SEO, web pages indexing on Search Engine. Follow the link to read in detail from Google sup...
Read more...
Laravel v5.5 Regist, Login

Laravel v5.5: Login, Register with Username or Email

In this blog post, I would like to share some ideas on how to customize your Laravel v5.5 authentication to support username or email based login. Laravel v5.5 is a second LTS version, that @laravelphp announced on Twitter on 20 Feb 2017. Just simply like the previous LTS version...
Read more...
paypal.png

A Guide to Integrate Omnipay PayPal with Laravel

In this blog post, I would like to share some idea about best way to integrate paypal express checkout using OmniPay with PHP. Omnipay is a framework agnostic, payment processing library for PHP 5.3 and higher. Omnipay libraries are stable, consistent, and fully united tested by...
Read more...