Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

iabrar95's avatar

book a doctor appointment in laravel

I want to add feature to my Web so that a could book a doctor appointment. I wanted to be very simple just choosing a doctor name and the date. and then it is saved in the database

does anyone knows how i could make it and if there is any resource that would help I want to make it with laravel

0 likes
3 replies
Snapey's avatar

its called CRUD

Probably covered well in some very basic tutorials.

Show a view with a select list containing the available doctors

Add a datetime field to the view

Add a submit button to the view

Add a route for the form

Submit the form, validate the data, write it to the database.

2 likes
jlrdw's avatar

I was curious and saw an app on github that does this meaning doctors appointments, would it hurt to study some of that code to get some ideas of how that's done.

I also maintain a custom framework, and I have gotten tons of ideas from Symfony and laravel GitHub pages on how things are done in the vendor folders, an excellent learning tool.

There are also calendar applications such as laravel calendar you could try.

1 like

Please or to participate in this conversation.