I need to attach the start_date and start_time into one field in the response as start = start_date + start_time in the json array, this is how i get display the json array
I need to show as start : "2021-02-18 12:32:00" with all the other fields too
Here's my controller function
public function calendar(Job $job)
{
$user = auth()->user();
$calendar= $job->where('user_id',$user->id)->get();
return response()->json($calendar);
}

