Count today’s, Current month and Current year data in Laravel
In this post, i give you example query of how to fetch current month records from table using Laravel query builder. We sometimes require to get records that created on…
In this post, i give you example query of how to fetch current month records from table using Laravel query builder. We sometimes require to get records that created on…
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,…