Create custom login and signup page in laravel
Friends, you must have heard about the authentication system in Laravel. With the help of the authentication system, we can easily create an authentication system in which Laravel gives us…
Friends, you must have heard about the authentication system in Laravel. With the help of the authentication system, we can easily create an authentication system in which Laravel gives us…
function chat_user_search(Request $req){ $data = DB::table('users')->where('name', 'like', '%'.$req->search.'%')->get(); foreach ($data as $key => $value) { }
PhonePe Payment Gateway Integration in Laravel; In this post, we will phopepe integrate in our laravel application. Phopepe is India's largets payment collection api platform that allows vendors to integration…
To build a login with a Google account in the Laravel system, we need to have a Gmail email account. This gmail account will help us to create an account…
View: <div class="container card" style="padding:20px"> @if (session('msg')) <div class="alert alert-success"> {{ session('msg') }} </div> @endif <h3 style="text-align: center;">Registration Form</h3> <form action="{{route('submit_records')}}" method="post"> <div class="form-group"> <label>Name</label> <input type="text" name="name" id="name" class="form-control"…
This article will give you example of laravel ajax crud example. you can understand a concept of laravel ajax crud example tutorial. I explained simply about laravel jquery ajax crud…
Friends, you must have learnt about crud operation in Laravel. Crud operation means inserting data in the database, displaying it in the printout, editing it and deleting it. In this tutorial,…