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…
Laravel Charts is a charting library for laravel, and it's the only PHP package that's able to generate unlimited combinations of charts out of the box. This is because Chart's…
Laravel File Upload and Progress Bar tutorial; In this step-by-step guide, we will teach you how to create a file upload and progress bar component in the Laravel application using…
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…
$data = new User; $data->temporary_token = $token; $data->name = $name; $data->email = $userdet->email; $data->password = Hash::make($userdet->email); $data->save(); $ID = $data->id;
.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']…