/**
  * Show a reservation
  */
 public function show(IpAddress $ip_address)
 {
     $reservation = IpAddress::whereId($ip_address->id)->with('dhcp_reservation')->get();
     return $reservation;
 }