$cita= Cita::orderBy(asc)->paginate(10),
What error do you get?
The arguments for orderBy are $field and $direction:
$cita= Cita::orderBy('id', 'asc')->paginate(10),
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community