0

I'm trying to create a new service option while creating a bill (a bill can have many services), it's like creating a new tag, or category while writing post without reloading, but i have this internal server error 500, i think the problem is in the Controller because it works fine when i comment the create in controller, route and csrf and stuff are checked, thanks for helping me !

In my javascript :

var max_service_id = {{$max_service_id}};

$.ajaxSetup({
    headers: {
        'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
    }
});

$("#add_service_button").on("click",function(e){

e.preventDefault();

var service_name = $("input[name=service_name]").val();
var service_category = document.getElementById('service_category').value;
var service_description = $("input[name=service_description]").val();

$.ajax({
    type:'POST',
    url:'/service/add-in-bill',
    dataType: 'json',
    data:{
        name : service_name,
        category_id : service_category,
        description : service_description
    },
    success:function(data){
        if (data.message) {
            //This is error message
            alert(data.message);
        }
        if (data.success) {
            alert(data.success);
            var newService = new Option(service_name, max_service_id, false, true);
            $('.multipleSelect').append(newService).trigger('change');
            max_service_id++;
            $("#add_service_div").hide("fast");  
        }
    }
});

})
});

In my controller :

    $validator = Validator::make($request->all(), [
        'name' => 'required|unique:services',
        'category_id' => 'required',
    ]);
    if ($validator->fails()) {

        return response()->json(['message'=>$validator->errors()->all()]);

    } else {

        // It works fine when i comment this, so i think the problem is something about variables from javascript to php stuff
        Service::create($request->all());

        return response()->json(['success'=>'Create service success !']);

    }

// // I think the problem is in the Controller because it works fine when i comment the "Service::create($request->all());"

Nguyen Rim
  • 43
  • 2
  • 6

0 Answers0