Datatable is a powerful jQuery plugin. it is basically used to display data in a table format with various features like searching, sorting, pagination etc. In Laravel. it also provide some other features like CSV, Excel format sheet etc. if you want to Install the DataTables you need to follow below steps – 1. Install […]
Tag: Laravel
How to set up Spatie Media Library in Laravel 8
if you are a laravel developer and want to know how to setup Spatie Media Library in Laravel 8. Spatie Media Library is easily manage files and images associated with your models. Step 1: Install the package Step 2: Publish the config file Step 3: Add the Trait to model Step 4: Migrate the database […]
Beginner: create Laravel controllers
Hi, If you are a beginner and want to know how to create laravel controller so this post is very useful for you. in this blog I will explain how to create controller in Laravel. Controller is the main key component in Laravel. it will handle all user request and return appropriate response according to […]
How to create migration and rollback in Laravel 8?
Hi, if you are beginner and want to create database table in laravel 8 so this post is very useful. in laravel we need to create database table through migration. laravel providing migration command that helps we can create/remove database table and its column. Table of contents 1) Migration 2) Rollback 3) add new column […]
Form Validation In Laravel 8
in any website, we can see different type of forms validation available . we need to validate forms because it will create a bunch of garbage data in database. if we will specify which type of data we require so it will store proper data in database table. we need to overcome garbage data to […]
Laravel Passport integration
if you want to develop mobile application so Web Services is very important, you need to create API. As we know laravel is very popular because of creating API but if you are beginner and want to know how to create API and webservices you are in right place. I will show how to create simple […]
How to send OTP in the email on registration using Laravel API
if you want to apply send OTP on user registration and after OTP verify make and update to true is_email_verified field in users table. user can able to login if field is_email_verified is true .I understand you have already is_email_verified in users table. Step 1. I am creating new migration for adding new field in […]
A quick guide to Install Laravel 8 on Windows 10 localhost Wamp server
Laravel is a web application framework created in PHP language. it is open-source framework. it provide functionality for building powerful and robust applications. it provided a structure that saves lots of time and plan for large applications to develop in laravel. Below I mentioning some steps to install laravel in Wamp server. Table of Contents […]
How to Get/Fetch website URL in Laravel?
I am explaining you for how to get base url or home page url in laravel website. we need to get site URL for something share/image url or link, so you can get with help of url helper and URL facade. Both are same so you can use anywhere it means in controller or view. […]