Now that we have our first Events being displayed on the homepage, we need a way to view them:
This will allow us to:
- Preview all Event details
- Attend/Unattend an Event
- See a list of Talks for the Event
- Attend/Unattend a Talk
Let's get building!
Adding Event Show Page
Let's start by creating a new component:
php artisan make:livewire Events/ShowThis will create a class and a view component for us. Let's add the basic logic of loading an Event via API: