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 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

Laravel 11 Simple Pagination Tutorial

Laravel 11 Simple Pagination Tutorial

In Laravel 11 application, paginate() is a built-in method using which you can display records in HTML table data with paginated numbers and links. Let’s start creating an application that displays data in an HTML table view with pagination with numbers and links using Bootstrap and the paginate() method: Step 1 – Add Dummy Data … Read more

Laravel 11 Pagination with Relationship Tutorial

Laravel 11 Pagination with Relationship Tutorial

In Laravel 11 it has become very simple to fetch data from a table 2 or more tables with the help of Relationship Eloquent and display it using paginate() method. Let’s start creating functionality that will help us show pagination with relation data in views in laravel: Step 1 – Create Model and Migration Run … Read more