homepageHost = parse_url($contact->homepage, PHP_URL_HOST); $file = public_path() . '/assets/profile-images/' . $contact->homepageHost . '/image'; $contact->image = ($filesystem->exists($file)) ? '/assets/profile-images/' . $contact->homepageHost . '/image' : '/assets/profile-images/default-image'; } return view('contacts.index', compact('contacts')); } /** * Show a single contact. * * @return \Illuminate\View\Factory view */ public function show($nick) { $filesystem = new Filesystem(); $contact = Contact::where('nick', '=', $nick)->firstOrFail(); $contact->homepageHost = parse_url($contact->homepage, PHP_URL_HOST); $file = public_path() . '/assets/profile-images/' . $contact->homepageHost . '/image'; $image = ($filesystem->exists($file)) ? '/assets/profile-images/' . $contact->homepageHost . '/image' : '/assets/profile-images/default-image'; return view('contacts.show', compact('contact', 'image')); } }