Hello, my friend! This tutorial will show you how to upload an image using the Spatie MediaLibrary package. You will also learn how to upload images, edit images, and delete images. Today, you will see everything in one place. I’m sure many of you have found yourself in a situation where you don’t edit or remove the image from the […]
Month: May 2022
Laravel 9.14 has been Released
The Laravel team has released version 9.14, which includes migration table comments, a dynamic trashed factory state, a new array key helper, bootable/setup test traits, and other improvements: Today's Laravel release supports adding comments to tables as well as a new built-in "trashed" factory state 🎁 Enjoy! pic.twitter.com/nKuWjzUcuw — Taylor Otwell 🪐 (@taylorotwell) May 24, 2022 What New Laravel 9.14? […]
How to Create Tabs Using Tailwind CSS and Alpine JS
Today we are going to create Tabs Component using Tailwind CSS and Alpine JS. We are assuiming that you have the basic knowledge of tailwindcss and alpine js. Install AlpineJS into you project. If you did not know how to install it here is a tutorial on how to install AlpineJS into a laravel 9 : How to Install Alpine.js in […]
How to install Selectize.JS in Laravel 9
Today we will learn How to install Selectize.JS in Laravel 9. Selectize is an extensible jQuery-based custom UI control. It’s useful for tagging, contact lists, country selectors, and so on. It clocks in at around ~7kb (gzipped). The goal is to provide a solid & usable experience with a clean and powerful API. Also Read : How to Create a […]
How to Create a User using tinker in laravel 9
How to Create a User using tinker in laravel 9. Laravel Tinker is a powerful REPL for the Laravel framework, powered by the PsySH package. Also Read : Laravel 9 OrderBy ASC and DESC Tutorial Installation All Laravel applications include Tinker by default. However, you may install Tinker using Composer if you have previously removed it from your application: Usage Tinker allows […]
Laravel 9 OrderBy ASC and DESC Tutorial
In this section, we will look at how to use OrderBy ASC and DESC in Laravel. 5+, 6, 7, 8, 9 can be used. Also Read : Laravel 9 Seed Multiple Records Tutorial The OrderBy method allows you to sort the results of the query by a given column. The first argument accepted by the OrderBy method should be the column […]
Laravel 9 Seed Multiple Records Tutorial
In this Tutorial, I will demonstrate how to insert multiple records in Seeder using the 5+,6,7,8,9 operators. Create Laravel Project Also Read : Rest API Authentication with Passport Laravel 9 Create Category Model with table Categories Table Create Category Seeder Also Read : Laravel 9 Multiple Database Connection Tutorial Now Add CategorySeeder Class in DatabaseSeeder.php Now run, Also Read : Laravel 9 Shopping […]
Rest API Authentication with Passport Laravel 9
In this section, we will look at how to install and configure passport authentication in Laravel 9. For this tutorial, we will use rest api, laravel 9 passport, and Thunder Client vs code extensions to check and test api. Also Read : How to Install Bootstrap in Laravel 9? Laravel 9 Rest Api Authentication with Passport Step 1: Create Laravel […]
React & Tailwind CSS – Reusable Button Component
In this section, we’ll build a reusable button component with react js and tailwind CSS 3. You must first install setup react with tailwind css. You can comment on the article below. First you need to create Button.jsx component. Components/Button.jsx Now you can import Button Component and use anywhere. Also Read : How to Create & Use Component in Angular […]
Laravel 9 Shopping Cart Tutorial with Ajax Example
This post will go over an example of Laravel 9 Shopping Cart Tutorial with ajax. I explained laravel shopping cart ajax in simple steps. Let’s look at an example of a laravel add to cart session. Laravel ecommerce add to cart will be used. So, let’s go through a few steps to make an example of an add to cart […]