简体   繁体   中英

Laravel : How to get object in column with query builder

I want to display what kind of data I have described below, but I don't know the keywords.

For now, this is my data:

在此处输入图片说明

And this is the result I want:

在此处输入图片说明

This is, my controller:

$data = DB::table('tr_doctor_schedules as sch')
    ->select('sch.id as schedule_id','doctor_name','hospital_name','estimated_practice_time','day','from_time','until_time')
    ->join('mst_hospitals as hos', 'hos.id', '=', 'sch.hospital_id')
    ->join('mst_doctors as doc', 'doc.id', '=', 'sch.doctor_id')
    ->join('tr_doctor_schedule_details as dtl', 'dtl.doctor_schedule_id', '=', 'sch.id')
    ->where('sch.hospital_id', $hosId)
    ->where('sch.doctor_id', $docId)
    ->first();

if ($data) {
    return response()->json([
        'success' => true,
        'message' =>'success',
        'data'    => $data
    ], 200);
} else {
    return response()->json([
        'success' => false,
        'message' => 'Data not found.',
    ], 400);
}

Thanks

Try this

   $data = DB::table('tr_doctor_schedules as sch')
        ->selectRaw('sch.id as schedule_id,doctor_name,hospital_name,estimated_practice_time,GROUP_CONCAT(day) as day,from_time,until_time')
        ->join('mst_hospitals as hos', 'hos.id', '=', 'sch.hospital_id')
        ->join('mst_doctors as doc', 'doc.id', '=', 'sch.doctor_id')
        ->join('tr_doctor_schedule_details as dtl', 'dtl.doctor_schedule_id', '=', 'sch.id')
        ->where('sch.hospital_id', $hosId)
        ->where('sch.doctor_id', $docId)
        ->groupBy('sch.id')
        ->first();

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM