Chart in laravel using chart.js

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…

0 Comments

Get inserted id in laravel

$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;    

0 Comments

CCAvanue in Laravel

.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']…

0 Comments