Jquery php/laravel datatable
If you have hundreds of thousands of records or even millions of records you don't want to load it at once to your HTML as we do in our previous example because…
If you have hundreds of thousands of records or even millions of records you don't want to load it at once to your HTML as we do in our previous example because…
In most of our client websites they ask to implement login with otp . Today I will write on this topic about integrating the otp login system on the default…
.env Route::get('ccavanue', [Crudcontroller::class, 'ccavanue']); Route::get('ccavanue-success', [Crudcontroller::class, 'ccResponse'])->name('cc_response'); Crudcontroller.php function ccavanue(Request $request){ $input = $request->all(); $input['amount'] = 100; $input['order_id'] = "123XSDDD456"; $input['currency'] = "INR"; $input['redirect_url'] = route('cc_response'); $input['cancel_url'] = route('cc_response'); $input['language']…
How to use Facebook to log into a Laravel application. If you have the same query, keep reading; in this article, we'll learn how to use the Socialite package in Laravel to…
Nowadays, there is a lot of application moving from traditional email/password to phone number/password as the main authentication. It is because the OTP method we could say it much more…
Nowadays, there is a lot of application moving from traditional email/password to phone number/password as the main authentication. It is because the OTP method we could say it much more…
Sending email has become an essential part of modern web applications. For example, they are a great way to communicate with users, when they register, when verifying registrations, and when…