How To Manage DateTime with Carbon in Laravel and PHP
Working with date and time in PHP can be complicated. We have to deal with strtotime, formatting issues, lots of calculations, and more. The Carbon package can help make dealing with…
Working with date and time in PHP can be complicated. We have to deal with strtotime, formatting issues, lots of calculations, and more. The Carbon package can help make dealing with…
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…