I have a form where I ask some questions to my user for rendering my services, each form submission has a payment that needs to be paid by the enduser. What I have already done: 1. I have created a controller/form where user provided data is captured. 2. generate orderid for each form submission. 3. the data is getting stored in the db as specified. what I want to achieve: 1. Upon successful submission of the form, user will be redirected to a thankyou page and on the thankyou page he should be given an option to make the payment. 2. I want to create a paymentcontroller so that a new record is created, based on form submission details in relationship with the orderID attached with the form submission record. 3. the payment controller should also be able to capture payment amount, orderid etc., I am not going the regular way of cart method, its just a form to be filled for service to be rendered and payment collected for each request. I am new to programming, please help me if you can. ...
Views folder under resources and Http folder under app in my laravel project is getting deleted repeatedly when someone visits www.website.com/laravel_7.0 . The laravel version of the project is 5.8.* . How may I stop this? I would appreciate any help. from Newest questions tagged laravel-5 - Stack Overflow https://ift.tt/37jWJG4 via IFTTT
I am performing insertion in 4 tables simultaneously using laravel 5.8. When I Submit incomplete Form it will show me error and after that when submit proper data again it will show database error SQLSTATE[23000]: Integrity constraint violation: 1452 Cannot add or update a child row: a foreign key constraint fails (`matrimonial_db`.`personal_details`, CONSTRAINT `personal_details_ibfk_1` FOREIGN KEY (`site_user_id`) REFERENCES `siteuser` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION) (SQL: insert into `personal_details` (`site_user_id`, `updated_at`, `created_at`) values (148, 2020-04-29 05:16:53, 2020-04-29 05:16:53)) First time when i fill form it insert data successfully in all tables but when try again it will show me the error. here is a code try { $connection = DB::connection('mysql'); $connection->beginTransaction(); $userData = session()->get('registeruser_data'); $userData->user_type = 'v...
تعليقات
إرسال تعليق