/**
  * Display a listing of the resource.Andrei111111
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     $clients = Client::all();
     return view('clients.index', ['clients' => $clients, 'count' => Client::count()]);
 }