DB::table('users')
->where('id', $id)
->update([
'status' => 1
]);
$update = DB::table('student') ->where('id', $data['id']) ->limit(1) ->update( [ 'name' => $data['name'], 'address' => $data['address'], 'email' => $data['email'], 'contactno' => $data['contactno'] ]);
$house=house::where('id',1)
->orderBy('id')
->take(1)
->get();
dd($house);
public function index()
{
$users = User::select("*")
->whereIn('id', [4, 5, 6])
->get();
dd($users);
}