/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $clients = Client::orderby('updated_at')->get();
     return view('client/index', compact('clients'));
 }