Recent Post

Library Management System in Java

A library Managements system is one of the most useful systems where user can add new stock of books update them delete them and manage if a user wants a book then the library handler give him and take some information from the user to store which time he takes a book and also which time he will return it back. If a user return books after the due date they will pay a late fee.

java 2022-09-26 09:07:29 Muhammad Zubair

How to make form validation in javascript

Validation is the main feature of any website. It help to get proper input from user. In this tutorial we will see how to define rules for validation step by step. We will create a form which take input from user we will define rules which describe what or which type values we want.

javascript 2022-09-02 04:44:47 Muhammad Zubair

How to make bmi calculator in javascript

This tutorial take two input from user one is height of user and other one is weight of user to calculate BMI. Its important to calculate weight in Killograms and height in Meters.

javascript 2022-09-02 04:34:29 Muhammad Zubair

How to do form validation in laravel 9

Validation is the most important part of a website which validate the data which coming from input fields. Laravel is providing us a best validation with most important rules. It provide us all type of validation of user inputs. We use simple validate method in controller to validate data incoming from user input.

laravel 2022-09-01 19:31:05 Muhammad Zubair

How to generate faker data in laravel using seeder

Faker is way to generate dummay data in laravel and we can store into database. It helps developer to save their time by putting data one by one in database. We can get multuple records of data by running one command.

laravel 2022-08-31 07:44:32 Muhammad Zubair

How to Upload image into database in laravel 9

How to upload image into database in laravel 9; Image uploading is main feature of all website. In this tutorial we will step by step how to upload image into database in laravel 9. The source code is given bellow. We also see how to link storage with public folder for image view.

laravel 2022-08-24 17:37:14 Muhammad Zubair

How to Send Email in Laravel 9

​Laravel 9 e-mail sending tutorail; on this tutorial we can learn how to send emails in laravel 9 the usage of SMTP drivers like Mailgun, Postmark, Amazon SES and sendemail.

laravel 2022-08-21 01:49:49 Muhammad Zubair

Laravel 9 Custom Login and Registration System

In this tutorial we will learn step by step how to make custom login and registration system in laravel 9. We use bootstrap for designing.

laravel 2022-08-13 11:30:58 Muhammad Zubair

How to Install Bootstrap 5 in Laravel 9 With Vite

Its a website development framework it use for develop front end of any website. Its main function is to provide any website responsiveness which simple mean run any website on mobiles and all other devices properly.

laravel 2022-08-13 09:32:19 Muhammad Zubair

How to show models data into blade file in laravel

Do you have any idea How to get records from a model on all view pages in Laravel? In this tutorial, I will show you a simple way to show data in blade files. Typically in Laravel, we need to use controller and models to get record from a table of database to show data onto view files. today I will tell you the best way to call a model two all pages of a Laravel application.

laravel 2022-08-12 13:31:04 Muhammad Zubair