I`m new to the laravel 5.4 and um developing trainee management system.what i need is when i press see details button on right side green color.all the datas under the that Trainee id need to be shown.see the image,

for an example if i want to see ID MOB/TR/1739.i need to press see details on right side.hope you got it.in additionally here is the database related to that.
Here is i developed controller for that.
public function user_details($traninee_id)
{
$trainee_details= registerdetails::where('traninee_id','=',$traninee_id)->get()->first();
return view('registeredusers.seedetails', compact('trainee_details'));
}
Can anyone suggest me the suggestions to complete it?

