/**
  * @param HostnameRepositoryContract $hostname
  * @return \Illuminate\View\View
  */
 public function index(HostnameRepositoryContract $hostname)
 {
     return view('management-interface::hostname.index')->with(['hostnames' => $hostname->paginated()]);
 }