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 ChartJS Chart Example Tutorial

Laravel 11 ChartJS Chart Example Tutorial

Chart.js is a JavaScript library that allows users to create bar charts, line charts, pie charts, graph charts, area charts, column charts, etc. in php laravel 11 projects. Let’s start to create bar charts, line charts, pie charts, graph charts, area charts, column charts using chartJS: Step 1: Create Chart Routes Edit routes/web.php and add … Read more

How to Deploy Laravel 11 Project On Shared Hosting Cpanel

How to Deploy Laravel 11 Project On Shared Hosting Cpanel

Shared hosting providers provide cPanel to their users with the help of which they can deploy their projects and also provide other features which can be used to configure their projects. Let’s start to deploy laravel project on shared hosting cpanel: Step 1: Compress Your Laravel Project In your local system, Compress your laravel project … Read more

Upload File in Laravel 11 Using API with Postman

Upload File in Laravel 11 Using API with Postman

Postman application allows users to call APIs to send and receive data from the server through the REST API. To upload a file, create a REST API in Laravel and create a new request in Postman with form data to allow users to choose file upload in Laravel 11 applications. Let’s start to create file … Read more

Laravel 11 REST API CRUD Tutorial

Laravel 11 REST API CRUD Tutorial

A CRUD REST API in Laravel 11 allows users to perform CRUD (Create, Read, Update, Delete) operations on resources using RESTful principles. Let’s start to create a RESTful API CRUD operation application with Laravel 11 using Laravel Passport auth: Step 1 – Install Laravel and Create a New Project Run the following composer command to … Read more

Laravel 11 Google Bar Chart Example

Laravel 11 Google Bar Chart Example

Google Charts allows users to create column charts, bar charts, area charts, geo graphical charts and many other charts in Laravel 11 applications. Let’s start creating a bar chart and retrieving data from a data source and displaying it in it using google charts: Step 1 – Create Controller controller named ChartController by using the … Read more

Laravel 11 Google Pie Chart Tutorial

Laravel 11 Google Pie Chart Tutorial

In Laravel 11, the Google Charts JS library allows users to create pie charts to represent numerical proportions and present data in it by slices. Let’s start creating a pie chart and retrieving data from a data source and displaying it in it using google charts: Step 1 – Create Controller controller named ChartController by … Read more

Laravel 11 Passport REST API Authentication Example

Laravel 11 Passport REST API Authentication Example

In Laravel 11, Passport Auth package allows users to create login, register REST API by token based authentication. Let’s start installing and configuring Passport auth to create token based authentication: Step 1 – Install Laravel and Create a New Project Run the following composer command to install and create new laravel project: Step 2: Install … Read more

Laravel 11 CKeditor 5 Image Upload Example

Laravel 11 CKeditor 5 Image Upload Example

In CKEditor 5, ckFinder allows users of upload image feature in a text editor on Laravel 11 form. Let’s start to create WYSIWYG editor with image upload feature using ckEditor 5 with ckFinder library: Step 1: Create Blade View Create ckeditor.blade.php file in resources/views/ folder and add textarea input field in it: Step 2: Integrate … Read more

Laravel 11 Export Excel and CSV File Tutorial

Laravel 11 Export Excel and CSV File Tutorial

In Laravel 11, exporting CSV or Excel files means fetching data from database and download in excel or csv file. Let’s start by creating a route and method in controller that allows users export data in CSV or Excel files using Maatwebsite\Excel: Step 1 – Install Laravel Excel Package Install Laravel Excel package to manage … Read more