$authid = Auth::user()->id;
$tblAptServices = $request->except('userName', 'userEmail', 'userMobile', 'aptTime', 'total');
DB::table('appointmentservices')->insert([
'appointment_id' => $authid,
'service_id' => $tblAptServices['userAptCheckbox'],
'total' => $tblAptServices['cost'],
]);
You can serialize the data before saving it in the database table column.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community