# Part 11 - CRUD Programmes

  • In this part you have to build a fully operational CRUD for the programmes
  • Every route corresponding to this programmes CRUD is only accessible if you are logged in AND you have admin rights.

TIP

Use the admin middleware you made earlier to protect these routes from unauthorized access.

# Index

programmes index

# Create new programme

programmes create programmes create

# Edit a programme

programmes edit programmes edit

# Delete a programme

programmes delete programmes delete

# Optional

  • Make the programme name clickable
  • Add a spinner to the update input fields
  • Don't update the programme when the name has not changed
  • Add pagination to the table
Last Updated: 12/6/2022, 9:18:17 PM