LARAVEL

  • How to add pagination in Laravel example

    In this tutorial we will learn how to add pagination in laravel There are several ways to paginate in laravel. The simpler way to make pagination item in laravel is paginate method on the query builder or an Significant query. It’s automatically add the pagination to item, table etc. In this laravel code we pass...
  • How to integrate OTP in LARAVEL

    In this tutorial we will learn how to integrate OTP in laravel (One Time Password) Table of Contents web.php(route)insert_form.blade.phpheader.blade.phpInsertController.php (controller)OtpVerify.php (model)generateOTP.jshome.blade.php web.php(route) insert_form.blade.php header.blade.php InsertController.php (controller) OtpVerify.php (model) generateOTP.js home.blade.php Post Views: 97
  • Laravel 9 Join Query Example Tutorial

    In this tutorial we will talk about how to make laravel 9 join query with example. We will see how to apply inner join in laravel 9. We will look at below code example of how to make inner join query in laravel 9. In this tutorial, we will execute a how to write inner...