/**
  * Display the specified resource.
  *
  * @param  int  $id
  * @return \Illuminate\Http\Response
  */
 public function show($client_name)
 {
     $client = Client::locatedAt($client_name)->first();
     return view('clients.show', compact('client'));
 }