Skip to main content

Sending an array from the javascript to the laravel controller

Im trying to send an array from my javascript to my laravel controller but when I dd() I get null. Javascript :

$('#submmit').click(function() {
            $.ajax({
                method: 'POST',
                url: '/Calendar/store',
                contentType: 'json',
                data: JSON.stringify(partconValues),
                success: function(response) {
                    console.log(response);
                },
                error: function(error) {
                    console.error('Error sending partconValues to the controller:', error);
                }
            });
        })

Controller :

public function store(Request $request)
{
    Log::info('Request data:', $request->all());
    $partconValues = json_decode($request->getContent());
    $process = \App\Models\Process::find($request->input('partcon_id'));
    $part = \App\Models\ProductPart::find($request->input('part_id'));
    $product = \App\Models\Product::find($request->input('product_id'));

    $userStartTime = Carbon::createFromFormat('m/d/Y H:i', $request->input("start") . ' ' . $request->input("starttime"));
    $workStart = Carbon::createFromTime(8, 0);
    $workEnd = Carbon::createFromTime(18, 0);

    $task = new \App\Models\Task;
    $task->name = $request->input('TaskName');
    $task->process_id = $partconValues;
    dd($task);
    $task->save();

    $totalDuration = $process->construction_time * $request->input('construction_time');

    if ($totalDuration <= $workStart->diffInMinutes($workEnd)) {
        $data = new \App\Models\Calendar;
        $data->name = $process->name;
        $data->code = $product->code . $part->code . $process->code;
        $data->duration = $totalDuration;
        $data->start = $userStartTime;
        $data->finish = $userStartTime->copy()->addMinutes($totalDuration)->toDateTimeString();
        $data->station_id = $request->input('station_id');
        $data->priority = "1";
        $data->save();

        return redirect('/admin');
    } else {
        $remainingDuration = $totalDuration;

        while ($remainingDuration > 0) {
            $currentDayEndTime = $userStartTime->copy()->setTime(18, 0);
            $currentDayActualEndTime = min($currentDayEndTime, $userStartTime->copy()->addMinutes($remainingDuration));

            $data = new \App\Models\Calendar;
            $data->name = $process->name;
            $data->code = $product->code . $part->code . $process->code;
            $data->duration = $currentDayActualEndTime->diffInMinutes($userStartTime);
            $data->start = $userStartTime;
            $data->finish = $currentDayActualEndTime->toDateTimeString();
            $data->station_id = $request->input('station_id');
            $data->priority = "1";
            $data->save();

            $userStartTime = $data->start->setTime(8, 0)->addDay();
            $workEnd = Carbon::createFromTime(18, 0);

            $remainingDuration -= $data->duration;
        }

        return redirect('/admin');
    }
}

My Laravel log :

[2023-11-25 22:27:35] local.INFO: Request data: {"TaskName":"HI","product_id":"1","construction_time":"12","station_id":"1","starttime":"08:00","start":"11/25/2023","_token":"GhbA5tVuVHKGZPb0YM8w0fL9BrsCdvHnaWRWAUGy"}

partconValues is the array Im trying to send. I console loged the array too and it is showing up currectly. I think my problem is in reciving the array in the controller I tested few ways but I didnt have any luck. please help me thank you.

Via Active questions tagged javascript - Stack Overflow https://ift.tt/gTKvAbZ

Comments

Popular posts from this blog

Prop `className` did not match in next js app

I have written a sample code ( Github Link here ). this is a simple next js app, but giving me error when I refresh the page. This seems to be the common problem and I tried the fix provided in the internet but does not seem to fix my issue. The error is Warning: Prop className did not match. Server: "MuiBox-root MuiBox-root-1" Client: "MuiBox-root MuiBox-root-2". Did changes for _document.js, modified _app.js as mentioned in official website and solutions in stackoverflow. but nothing seems to work. Could someone take a look and help me whats wrong with the code? Via Active questions tagged javascript - Stack Overflow https://ift.tt/2FdjaAW

How to show number of registered users in Laravel based on usertype?

i'm trying to display data from the database in the admin dashboard i used this: <?php use Illuminate\Support\Facades\DB; $users = DB::table('users')->count(); echo $users; ?> and i have successfully get the correct data from the database but what if i want to display a specific data for example in this user table there is "usertype" that specify if the user is normal user or admin i want to user the same code above but to display a specific usertype i tried this: <?php use Illuminate\Support\Facades\DB; $users = DB::table('users')->count()->WHERE usertype =admin; echo $users; ?> but it didn't work, what am i doing wrong? source https://stackoverflow.com/questions/68199726/how-to-show-number-of-registered-users-in-laravel-based-on-usertype

Why is my reports service not connecting?

I am trying to pull some data from a Postgres database using Node.js and node-postures but I can't figure out why my service isn't connecting. my routes/index.js file: const express = require('express'); const router = express.Router(); const ordersCountController = require('../controllers/ordersCountController'); const ordersController = require('../controllers/ordersController'); const weeklyReportsController = require('../controllers/weeklyReportsController'); router.get('/orders_count', ordersCountController); router.get('/orders', ordersController); router.get('/weekly_reports', weeklyReportsController); module.exports = router; My controllers/weeklyReportsController.js file: const weeklyReportsService = require('../services/weeklyReportsService'); const weeklyReportsController = async (req, res) => { try { const data = await weeklyReportsService; res.json({data}) console