How to Export in Excel and CSV in Laravel 11
To export data in Excel and CSV in Laravel, use the “maatwebsite/excel 3.1″ package. Here is the step-by-step guide: Step…
How to Integrate React.js in Laravel 11 [Step-by-step Guide]
Integrating React.js’s latest version with Laravel is a challenging task, and I am writing this step-by-step guide to help every…
How to Create Charts in Laravel 11 using Chart.js
In this small project, we will use the Chart.js library to create charts in Laravel 11. The Chart.js is a…
Laravel 11 One to Many Eloquent Relationship
A one-to-many relationship in Laravel is defined as a Single model owning multiple models. For example, A person has many…
How to Implement DataTables in Laravel 11
To implement datatables in Laravel, use the “yajra/laravel-datatables-oracle” package. I searched this topic online, and no blog has proper instructions…
How to Upload a File in Laravel 11
When working with a live project, you must create a form that accepts the file as input and uploads it…
How to Create CRUD Application in Laravel 11 with Vue.js 3
Laravel is the best PHP Framework out there, and it has great support for Vue.js. Laravel uses Vite as an…
How to Automate Tasks using Cron Jobs Scheduling in Laravel 11
A task scheduling system is required to automate these tasks. For example, it could send promotional emails, optimize the database,…
How to Install and Use Image Intervention in Laravel 11
Intervention Image has optional support for Laravel and comes with a Service Provider and Facades for easy integration. In addition, laravel includes…
How to Create Pagination in Laravel 11 [Step-by-step Guide]
To create pagination in Laravel, you can use the “paginate()” method on the query builder or an Eloquent query. The…