Code your dreams into reality.
Every line of code is a step towards a better future.
Embrace the bugs, they make you a better debugger.

Laravel 11 Upload File to Google Drive Tutorial

Laravel 11 Upload File to Google Drive Tutorial

Spatie Provider is a package that helps developers to upload files to Google Drive cloud servers using Laravel 11 applications with its file system. Let’s start to setup a Laravel file system Storage driver with Google Drive API to upload file in cloud server: Step 1 – Set Up Google Cloud Account Click on https://console.cloud.google.com/projectselector2/iam-admin/serviceaccounts … Read more

Laravel 11 Store Backup on Dropbox using Spatie Tutorial

Laravel 11 Store Backup on Dropbox using Spatie Tutorial

In Laravel 11, Dropbox provides PHP SDK that allows developers to store backup of Laravel applications with the help of the file system. Let’s start to implement functionality in laravel application to store backup on dropbox: Step 1 – Create Account Dropbox Go to https://www.dropbox.com/login?cont=https%3A%2F%2Fwww.dropbox.com%2Fdevelopers%2Fapps link, and create console application in it, and find secret … Read more

Laravel 11 Create ZIP Archive File Tutorial

Laravel 11 Create ZIP Archive File Tutorial

In Laravel 11, Zip file is a compressed archive format, there are two simple ways to create and download it, the first way is build in method, and the second way is external package like stechstudio/laravel-zipstream. Let’s start to create and download a zip archive file using in built method and external package: #1 Using … Read more

Laravel 11 Custom Validation Error Message Tutorial

Laravel 11 Custom Validation Error Message Tutorial

Laravel 11 has built-in validate() method, you can easily customize validation rules and error messages in it. Let’s start creating custom validation error rules and messages in the application for the form: Step 1: Define Routes Edit routes/web.php file, and define routes in it to handle form requests: Step 2 – Create Controller Run the following … Read more

Laravel 11 Real Time Notification with Pusher Tutorial

Laravel 11 Real Time Notification with Pusher Tutorial

Pusher provides a package to developers, and it will make it easier to send real-time push notifications to Laravel 11 applications. Let’s start creating a application to send real-time push notification using Pusher: Step 1 – Create Account in Pusher Go to pusher.com and create an account by signing in for free here. Now, you … Read more

Laravel 11 Send SMS using Twilio Tutorial

Laravel 11 Send SMS using Twilio Tutorial

In laravel 11, Twilio provides PHP SDK with some methods that helps developers to send SMS to users mobile phones. Let’s start to make send sms application using twilio: Step 1 – Create Account in Twilio Open browser and type url “www.twilio.com“, and create a account in twilio. Step 2 – Install Twilio PHP SDK … Read more

Laravel 11 Comment Reply System Tutorial

Laravel 11 Comment Reply System Tutorial

In a Laravel 11 application, you can easily create a comment and reply system with the help of Eloquent relationships. Let’s see how to create a comment and reply system in a Laravel application: Step 1 – Create Post and Comment Migration File Run the following command to create post and comment migration file with … Read more

Laravel 11 Livewire Infinite Page Scroll Tutorial

Laravel 11 Livewire Infinite Page Scroll Tutorial

It is very easy to implement the feature of displaying data in the view on infinite page scroll in Laravel 11 Livewire application, for this you need to create loadMore() method on the component and use it on the views. Let’s start building the page in a Laravel livewire application to display data by infinite … Read more

Laravel 11 SweetAlert Tutorial

Laravel 11 SweetAlert Tutorial

SweetAlert or SweetAlert2 is a js library that allows developers to use sweetalert’s cdn on html pages and display popup messages like success, alert, error, warning to the users. Let’s start the implementation to display a popup message on a blade view file using the sweetalert js library in laravel 11 applications: Step 1 – … Read more

Laravel 11 Send WhatsApp Messages Tutorial

Twilio provides PHP SDK that will help the developers to send SMS or messages to the users WhatsApp number from the Laravel 11 application. Let’s start building an application to send WhatsApp messages to WhatsApp number using Laravel Step 1 – Set up a Twilio Account Open browser and type https://www.twilio.com/, and create account to … Read more