For it to work you have to pass the event (your model) as a parameter to the function and from the view pass the full value. Check your controller. Here is an example.
public function show (Event $event) { return view('event.show', $event); }