Blog

Insights, tutorials, and thoughts on web development and technology.

Laravel Sanctum: A Simple Guide to authenticate Mobile Apps

Laravel Sanctum: A Simple Guide to authenticate Mobile Apps

What is Laravel Sanctum? Laravel Sanctum provides a  simple way for authenticating Single Page Applications(SPAs), Mobile Applications, and simple token-based APIs. It allows users to create multiple...

Jun 15, 2022 · Tushar
Install wkhtmltopdf on CentOS

Install wkhtmltopdf on CentOS

Install the dependencies yum install fontconfig libXrender libXext xorg-x11-fonts-Type1 xorg-x11-fonts-75dpi freetype libpng zlib libjpeg-turbo Download the RPM File wget https://github.c...

Jun 14, 2022 · Tushar
Bootstrap 5 CDN Started Template

Bootstrap 5 CDN Started Template

You can use the following HTML template that contains the link to the JS and CSS CDN files to the Bootstrap 5 library. This includes the CDN link to CSS and JS files from jsDelivr   &...

Jun 12, 2022 · Tushar
Run Single Seeder Class in Laravel

Run Single Seeder Class in Laravel

In Laravel if you are looking to run a single seeder class you can do so by running the following command php artisan db:seed --class=PostTableSeeder In the above command, class PostTableSee...

May 10, 2022 · Tushar
Laravel 9 Basic CRUD Operations In-Depth Example

Laravel 9 Basic CRUD Operations In-Depth Example

This article goes in detailed on implementing Laravel CRUD Operations. Create, Read, Update and Delete are the very basic operations that almost every application has. Creating a basic CRUD Operations...

May 05, 2022 · Tushar