I want to check the value in the database whether it is the same with the form value. How can I view the value in database using dd syntex?
dd('status');
$updateForm = Form::where('reference_no',$r->refer)
-> update([
'status' => $r->sts,
'reference_no' => $r->refer,
'task' => $r->tsk,
'receiver' => $r->to,
'rider' => $r->frm,
]);